Replaced use of strcmp() with SDL_strcmp() in tests.
This commit is contained in:
parent
e96e39d53b
commit
74e5c8cffd
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ clipboard_testClipboardTextFunctions(void *arg)
|
||||||
charResult = SDL_GetClipboardText();
|
charResult = SDL_GetClipboardText();
|
||||||
SDLTest_AssertPass("Call to SDL_GetClipboardText succeeded");
|
SDLTest_AssertPass("Call to SDL_GetClipboardText succeeded");
|
||||||
SDLTest_AssertCheck(
|
SDLTest_AssertCheck(
|
||||||
strcmp(textRef, charResult) == 0,
|
SDL_strcmp(textRef, charResult) == 0,
|
||||||
"Verify SDL_GetClipboardText returned correct string, expected '%s', got '%s'",
|
"Verify SDL_GetClipboardText returned correct string, expected '%s', got '%s'",
|
||||||
textRef, charResult);
|
textRef, charResult);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue