diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-06-03 02:01:14 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-06-03 02:01:14 +0200 |
commit | a1039148b6e06df5af790846087b7837c60a88b9 (patch) | |
tree | 3bbdf059001fa1b5b33c13efc5afc60de9ea5754 | |
parent | b5a313e3914154bb33555f2c80c189991e89ea1c (diff) |
Return NULL from thread_func.
-rw-r--r-- | parsing.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -145,6 +145,8 @@ struct thread_arg_t { static void *thread_func(void *arg) { struct thread_arg_t *ta = arg; process_file(ta->f, ta->channel, ta->rs); + + return NULL; } void process(int thread_n) { |