From d7ca1b83257d10622a1fed772e6e999d77cf9b4a Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 20 Jul 2013 21:39:54 +0200 Subject: [PATCH] Replaced use of strcmp() with SDL_strcmp() in tests. --- test/testautomation_clipboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);