Browse Source

Uh, yeah, it helps to press "Save" before committing...

Ryan C. Gordon 10 years ago
parent
commit
059a030716
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/thread/pthread/SDL_systhread.c

+ 1 - 1
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);
         }
     }