From 059a0307169aa56b5345c6073ff94dba7a1b7d97 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 May 2015 21:30:41 -0400 Subject: [PATCH] Uh, yeah, it helps to press "Save" before committing... --- src/thread/pthread/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/pthread/SDL_systhread.c b/src/thread/pthread/SDL_systhread.c index cdff61f6a..0288f5db4 100644 --- a/src/thread/pthread/SDL_systhread.c +++ b/src/thread/pthread/SDL_systhread.c @@ -113,7 +113,7 @@ SDL_SYS_CreateThread(SDL_Thread * thread, void *args) if (hint && hint[0] >= '0' && hint[0] <= '9') { const size_t stacksize = (size_t) SDL_atoi(hint); if (stacksize > 0) { - pthread_attr_setstacksize(&type, ); + pthread_attr_setstacksize(&type, stacksize); } }