Replaced use of strcmp() with SDL_strcmp() in tests.

This commit is contained in:
Philipp Wiesemann 2013-07-20 21:39:54 +02:00
parent e96e39d53b
commit 74e5c8cffd

View file

@ -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);