mirror of
https://github.com/yawut/SDL.git
synced 2026-09-09 01:26:24 -05:00
Replaced use of strcmp() with SDL_strcmp() in tests.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user