summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/kit/threads.win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kit/threads.win32.c b/source/kit/threads.win32.c
index 910ee82..b8ca7ae 100644
--- a/source/kit/threads.win32.c
+++ b/source/kit/threads.win32.c
@@ -352,7 +352,7 @@ int thrd_create_with_stack(thrd_t *thr, thrd_start_t func, void *arg,
}
int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) {
- return thrd_create_with_stack(thr, func, arg);
+ return thrd_create_with_stack(thr, func, arg, 0);
}
// 7.25.5.2