From 5487e2b6b4bf4bace8f3fbbc11395ab9ca7cfd2a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 2 Aug 2009 20:45:40 +0000 Subject: [PATCH] Fixed type size for test_bit() --- src/joystick/linux/SDL_sysjoystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c index 0b920eb8d..66c19a6e7 100644 --- a/src/joystick/linux/SDL_sysjoystick.c +++ b/src/joystick/linux/SDL_sysjoystick.c @@ -371,7 +371,7 @@ static void LogicalSuffix(int logicalno, char* namebuf, int len) #if SDL_INPUT_LINUXEV #define test_bit(nr, addr) \ - (((1UL << ((nr) & 31)) & (((const unsigned int *) addr)[(nr) >> 5])) != 0) + (((1UL << ((nr) & 31)) & (((const Uint32 *) addr)[(nr) >> 5])) != 0) static int EV_IsJoystick(int fd) {