X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffs_error.c;h=11b75f7a0b24f6a5420b960f402c5c1dfde3d3a8;hp=dfdb798b77ed1c43ea7c5ef8da15700e552cba80;hb=33308768bd24abe4e1f59c5025a3dd824119ae1d;hpb=6648cbf52d6695755941ff8607fd7a0cda542e05 diff --git a/direct/yaffs_error.c b/direct/yaffs_error.c index dfdb798..11b75f7 100644 --- a/direct/yaffs_error.c +++ b/direct/yaffs_error.c @@ -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++; }