fixed a typo on line 54 of mh.c
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -51,7 +51,7 @@ mh_open (mailbox * mbox) | ... | @@ -51,7 +51,7 @@ mh_open (mailbox * mbox) |
51 | char *foo = NULL; | 51 | char *foo = NULL; |
52 | if (entry->d_name[0] == '.') | 52 | if (entry->d_name[0] == '.') |
53 | { | 53 | { |
54 | if (strcmp(entry->d_name, ".mh_sequences" == 0)) | 54 | if (strcmp(entry->d_name, ".mh_sequences") == 0) |
55 | /* TODO: deal with mh sequence files */; | 55 | /* TODO: deal with mh sequence files */; |
56 | continue; | 56 | continue; |
57 | } | 57 | } | ... | ... |
-
Please register or sign in to post a comment