diff options
author | mutantturkey <mutantturke@gmail.com> | 2012-10-24 10:01:42 -0400 |
---|---|---|
committer | mutantturkey <mutantturke@gmail.com> | 2012-10-24 10:01:42 -0400 |
commit | fb645ae8efa9f9df252857d5a5cb0f6ce8f7074b (patch) | |
tree | 36714ee3fe62e35d479eb253c264fd1af5ff902f /fly-tools/mask | |
parent | f715b377eb0b06092ec37d959b8dfc57dffbd7c7 (diff) |
don't say we're adding work
Diffstat (limited to 'fly-tools/mask')
-rw-r--r-- | fly-tools/mask/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fly-tools/mask/main.c b/fly-tools/mask/main.c index 804f07f..6adf5e8 100644 --- a/fly-tools/mask/main.c +++ b/fly-tools/mask/main.c @@ -83,7 +83,7 @@ int main( int argc, char **argv){ } thpool_t* threadpool; - threadpool=thpool_init(4); + threadpool=thpool_init(2); char filename[256]; char *temp; @@ -94,7 +94,6 @@ int main( int argc, char **argv){ if (temp != NULL) *temp = '\0'; char *filename_r = malloc(256); strncpy(filename_r, filename, sizeof(filename)); - printf("add work: %s \n", filename); thpool_add_work(threadpool, (void*)convert_image, (void*)filename_r); } |