Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Replaced use of strcmp() with SDL_strcmp() in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 20, 2013
1 parent 651b33e commit d7ca1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testautomation_clipboard.c
Expand Up @@ -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);

Expand Down

0 comments on commit d7ca1b8

Please sign in to comment.