diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
| commit | 75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (patch) | |
| tree | c9a66af84908aa6ce188344ffa7d962a88ba95f2 /builtins/thread.c | |
| parent | b0b23acf887bec28b5ef8d0dfe448c4228ee0eb3 (diff) | |
Rename closure_t -> Closure_t for consistency
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); |
