make clang happier about unused argc/argv in main()

This commit is contained in:
neingeist 2013-12-09 10:35:23 +01:00
parent 8d149f026a
commit f04c4686c6

View file

@ -21,7 +21,7 @@ void dienomem() {
exit(1); exit(1);
} }
int main(int argc, char *argv[]) { int main(void) {
pthread_t threads[NUM_THREADS]; pthread_t threads[NUM_THREADS];
for (int t = 0; t < NUM_THREADS; t++) { for (int t = 0; t < NUM_THREADS; t++) {