Readability: remove redundant cast to the same type
This commit is contained in:
parent
56cbe12037
commit
b458d7a28f
14 changed files with 23 additions and 23 deletions
|
@ -113,7 +113,7 @@ SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
|
|||
|
||||
/* Set caller-requested stack size. Otherwise: use the system default. */
|
||||
if (thread->stacksize) {
|
||||
pthread_attr_setstacksize(&type, (size_t) thread->stacksize);
|
||||
pthread_attr_setstacksize(&type, thread->stacksize);
|
||||
}
|
||||
|
||||
/* Create the thread and go! */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue