X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fwhom.c;h=ef0b684d2a011817a34dd01cc7c86ba3b26190a6;hp=e664f4b29b31d2344cd733cd4a56c3365ee3e033;hb=6e9577f324bef90765a5edc02044eb111ec48072;hpb=5b483b0b8517541a8359d7049b4497c6efcb117e diff --git a/uip/whom.c b/uip/whom.c index e664f4b..ef0b684 100644 --- a/uip/whom.c +++ b/uip/whom.c @@ -84,6 +84,7 @@ main(int argc, char **argv) FILE *in; struct msgs_array msgs = {0}; struct msgs_array files = {0}; + size_t filep; setlocale(LC_ALL, ""); invo_name = mhbasename(argv[0]); @@ -162,7 +163,7 @@ main(int argc, char **argv) if (parse_msgs(&msgs, folder, &files) < 0) { exit(EX_IOERR); } - for (size_t filep = 0; filep < files.size; filep++) { + for (filep = 0; filep < files.size; filep++) { process(files.msgs[filep]); }