diff options
Diffstat (limited to 'sand-leek.c')
-rw-r--r-- | sand-leek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sand-leek.c b/sand-leek.c index 8047b8c..e4f73a0 100644 --- a/sand-leek.c +++ b/sand-leek.c @@ -337,7 +337,7 @@ main(int argc, char **argv) { for (i = 0; i < thread_count; i++) { iprintf("Spawning worker thread %d/%d ... ", i + 1, thread_count); - if (pthread_create(&workers[i], NULL, work, (void*)&khashes[i])) { /* FIXME not ! */ + if (pthread_create(&workers[i], NULL, work, (void*)&khashes[i])) { eprintf(""); perror("pthread_create"); free((unsigned long*)khashes); |