diff options
Diffstat (limited to 'builtins/thread.c')
| -rw-r--r-- | builtins/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/thread.c b/builtins/thread.c index b9193787..b842da94 100644 --- a/builtins/thread.c +++ b/builtins/thread.c @@ -16,7 +16,7 @@ #include "types.h" #include "util.h" -public pthread_t *Thread$new(closure_t fn) +public pthread_t *Thread$new(Closure_t fn) { pthread_t *thread = new(pthread_t); pthread_create(thread, NULL, fn.fn, fn.userdata); |
