Browse Source

* fix size specifier for %d

master
Alex 'AdUser' Z 8 years ago
parent
commit
7b8f087e68
  1. 2
      src/filter-test.c

2
src/filter-test.c

@ -55,7 +55,7 @@ int main(int argc, char *argv[]) {
fprintf(stderr, "! (error) : %s\n", error);
}
}
fprintf(stderr, "%% lines read: %d, matched: %d\n", read, matched);
fprintf(stderr, "%% lines read: %zu, matched: %zu\n", read, matched);
return EXIT_SUCCESS;
}

Loading…
Cancel
Save