Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed example in header file.
Did not compile because of typo in function name and missing argument.
  • Loading branch information
philippwiesemann committed Sep 6, 2014
1 parent c363bff commit 0b98d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SDL_thread.h
Expand Up @@ -233,9 +233,9 @@ extern DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread * thread);
* if (!thread_local_storage) {
* thread_local_storage = SDL_TLSCreate();
* }
* SDL_AtomicUnLock(&tls_lock);
* SDL_AtomicUnlock(&tls_lock);
* }
* SDL_TLSSet(thread_local_storage, value);
* SDL_TLSSet(thread_local_storage, value, 0);
* }
*
* void *GetMyThreadData(void)
Expand Down

0 comments on commit 0b98d0c

Please sign in to comment.