diff options
author | Philipp Wiesemann <philipp.wiesemann@arcor.de> | 2013-07-20 21:39:54 +0200 |
---|---|---|
committer | Philipp Wiesemann <philipp.wiesemann@arcor.de> | 2013-07-20 21:39:54 +0200 |
commit | ae0f68b429dd56bb1a12d575e34b2163baaf8c0b (patch) | |
tree | c5a5385a8c2695f4fba431ea6a35152e26433e29 /test | |
parent | 8046ac769544c4679b5a33b61aaa287680d1e462 (diff) | |
download | sdl-ae0f68b429dd56bb1a12d575e34b2163baaf8c0b.tar.gz |
Replaced use of strcmp() with SDL_strcmp() in tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/testautomation_clipboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testautomation_clipboard.c b/test/testautomation_clipboard.c index cc112f9a6..92aec7d03 100644 --- a/test/testautomation_clipboard.c +++ b/test/testautomation_clipboard.c @@ -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); |