From b3cc4551b19382299e7cabf89a481bc23e7776b2 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 27 Nov 2012 01:07:44 -0800 Subject: [PATCH] Fixed compiler warnings --- src/joystick/SDL_gamecontroller.c | 2 ++ test/automated/rwops/rwops.c | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c index 03bd7fb9b..17f66ee60 100644 --- a/src/joystick/SDL_gamecontroller.c +++ b/src/joystick/SDL_gamecontroller.c @@ -96,7 +96,9 @@ const char *s_ControllerMappings [] = }; static ControllerMapping_t *s_pSupportedControllers = NULL; +#ifdef SDL_JOYSTICK_DINPUT static ControllerMapping_t *s_pXInputMapping = NULL; +#endif /* The SDL game controller structure */ struct _SDL_GameController diff --git a/test/automated/rwops/rwops.c b/test/automated/rwops/rwops.c index 99ec1f46b..c3f236c3e 100644 --- a/test/automated/rwops/rwops.c +++ b/test/automated/rwops/rwops.c @@ -62,13 +62,13 @@ static void rwops_testParam (void) static int rwops_testGeneric( SDL_RWops *rw, int write ) { char buf[sizeof(hello_world)]; - int i; + Sint64 i; /* Set to start. */ i = SDL_RWseek( rw, 0, RW_SEEK_SET ); if (SDL_ATvassert( i == 0, "Seeking with SDL_RWseek (RW_SEEK_SET): got %d, expected %d", - i, 0 )) + (int)i, 0 )) return 1; /* Test write. */ @@ -86,14 +86,14 @@ static int rwops_testGeneric( SDL_RWops *rw, int write ) i = SDL_RWseek( rw, 6, RW_SEEK_SET ); if (SDL_ATvassert( i == 6, "Seeking with SDL_RWseek (RW_SEEK_SET): got %d, expected %d", - i, 0 )) + (int)i, 0 )) return 1; /* Test seek. */ i = SDL_RWseek( rw, 0, RW_SEEK_SET ); if (SDL_ATvassert( i == 0, "Seeking with SDL_RWseek (RW_SEEK_SET): got %d, expected %d", - i, 0 )) + (int)i, 0 )) return 1; /* Test read. */ @@ -108,12 +108,12 @@ static int rwops_testGeneric( SDL_RWops *rw, int write ) i = SDL_RWseek( rw, -4, RW_SEEK_CUR ); if (SDL_ATvassert( i == sizeof(hello_world)-5, "Seeking with SDL_RWseek (RW_SEEK_CUR): got %d, expected %d", - i, sizeof(hello_world)-5 )) + (int)i, sizeof(hello_world)-5 )) return 1; i = SDL_RWseek( rw, -1, RW_SEEK_END ); if (SDL_ATvassert( i == sizeof(hello_world)-2, "Seeking with SDL_RWseek (RW_SEEK_END): got %d, expected %d", - i, sizeof(hello_world)-2 )) + (int)i, sizeof(hello_world)-2 )) return 1; return 0;