aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-11-23 22:50:34 +1300
committerDavid Phillips <david@sighup.nz>2017-11-23 22:50:34 +1300
commitf5ba8485c1614dc24270d1885fc3dbc1c4b288e5 (patch)
treec7ffdb9435a9a614dd81e20bbb928157a8b98268
parentb7736f2cc756b77dec81b507be353deb1cdfc88a (diff)
downloadsand-leek-f5ba8485c1614dc24270d1885fc3dbc1c4b288e5.tar.xz
Remove old debug comment
-rw-r--r--sand-leek.c2
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);