From 4b86de315fcd7e27b117bec361363ba4c7c8083c Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 28 Feb 2011 23:50:07 -0800 Subject: [PATCH] Fixed warning on Windows --- test/testcursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 test/testcursor.c diff --git a/test/testcursor.c b/test/testcursor.c old mode 100644 new mode 100755 index 463dac9b6..08acd575e --- a/test/testcursor.c +++ b/test/testcursor.c @@ -137,7 +137,7 @@ create_arrow_cursor() } } } - sscanf(arrow[4 + row], "%d,%d", &hot_x, &hot_y); + SDL_sscanf(arrow[4 + row], "%d,%d", &hot_x, &hot_y); return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y); }