Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 9, 2017
1 parent f55c998 commit 1c43705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/SDL_test_random.c
Expand Up @@ -70,7 +70,7 @@ void SDLTest_RandomInitTime(SDLTest_RandomContext * rndContext)

srand((unsigned int)time(NULL));
a=rand();
srand(clock());
srand((unsigned int)clock());
b=rand();
SDLTest_RandomInit(rndContext, a, b);
}
Expand Down

0 comments on commit 1c43705

Please sign in to comment.