diff options
author | 2016-11-16 16:26:13 +0100 | |
---|---|---|
committer | 2016-11-16 16:28:01 +0100 | |
commit | 47a05778bff9388fc6c479461dd3804c79d7b539 (patch) | |
tree | bb3d4dc8df676b8aa478339b3fd0cd305dc4ac4d /3rdparty/SDL2/test/testautomation_sdltest.c | |
parent | e61b392edfbfe5b9d70908c087632da915a3abd8 (diff) |
Updated SDL2 to 2.0.5 (nw)
Diffstat (limited to '3rdparty/SDL2/test/testautomation_sdltest.c')
-rw-r--r-- | 3rdparty/SDL2/test/testautomation_sdltest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/SDL2/test/testautomation_sdltest.c b/3rdparty/SDL2/test/testautomation_sdltest.c index ec1da8a50ea..54cd6e2575e 100644 --- a/3rdparty/SDL2/test/testautomation_sdltest.c +++ b/3rdparty/SDL2/test/testautomation_sdltest.c @@ -1093,7 +1093,7 @@ sdltest_randomIntegerInRange(void *arg) SDLTest_AssertCheck(min <= result && result <= max, "Validated returned value; expected: [%d,%d], got: %d", min, max, result); /* Range with max at integer limit */ - min = long_min - (Sint32)SDLTest_RandomSint16();; + min = long_min - (Sint32)SDLTest_RandomSint16(); max = long_max; result = SDLTest_RandomIntegerInRange(min, max); SDLTest_AssertPass("Call to SDLTest_RandomIntegerInRange(...,SINT32_MAX)"); |