mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 07:52:57 -05:00
Replaced use of strcmp() with SDL_strcmp() in tests.
This commit is contained in:
parent
8b105773a0
commit
a30b85dd03
|
|
@ -140,7 +140,7 @@ clipboard_testClipboardTextFunctions(void *arg)
|
|||
charResult = SDL_GetClipboardText();
|
||||
SDLTest_AssertPass("Call to SDL_GetClipboardText succeeded");
|
||||
SDLTest_AssertCheck(
|
||||
strcmp(textRef, charResult) == 0,
|
||||
SDL_strcmp(textRef, charResult) == 0,
|
||||
"Verify SDL_GetClipboardText returned correct string, expected '%s', got '%s'",
|
||||
textRef, charResult);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user