X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffs_error.c;h=11b75f7a0b24f6a5420b960f402c5c1dfde3d3a8;hp=6757eec83cc3a352233e974e0d44841c9bff12e0;hb=d13e6146b4ccadd7aab2033b6cf9f4551d6abd71;hpb=84f122f301b6a27295641fcbde3a6fbcfea78a99 diff --git a/direct/yaffs_error.c b/direct/yaffs_error.c index 6757eec..11b75f7 100644 --- a/direct/yaffs_error.c +++ b/direct/yaffs_error.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -14,8 +14,8 @@ #include "yaffsfs.h" struct error_entry { - int code; - char * text; + int code; + const char *text; }; static const struct error_entry error_list[] = { @@ -31,7 +31,7 @@ static const struct error_entry error_list[] = { { ERANGE , "ERANGE"}, { ENODATA, "ENODATA"}, { ENOTEMPTY, "ENOTEMPTY"}, - { ENAMETOOLONG,"ENAMETOOLONG"}, + { ENAMETOOLONG, "ENAMETOOLONG"}, { ENOMEM , "ENOMEM"}, { EEXIST , "EEXIST"}, { ENOTDIR , "ENOTDIR"}, @@ -42,15 +42,15 @@ static const struct error_entry error_list[] = { { 0, NULL } }; -const char * yaffs_error_to_str(int err) +const char *yaffs_error_to_str(int err) { const struct error_entry *e = error_list; - if (err < 0) + if (err < 0) err = -err; - while(e->code && e->text){ - if(err == e->code) + while (e->code && e->text) { + if (err == e->code) return e->text; e++; }