From 0fc9b5bcf79d71a0735ebb4b14aab1d20375293f Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 22 Oct 2013 21:54:52 -0700 Subject: [PATCH] Fixed duplicate const warning --HG-- extra : rebase_source : 4529dd9d2bd4eb18a194d81f300cf47553ef2044 --- src/video/x11/SDL_x11keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/x11/SDL_x11keyboard.c b/src/video/x11/SDL_x11keyboard.c index 9a2de45a0..f3b83c968 100644 --- a/src/video/x11/SDL_x11keyboard.c +++ b/src/video/x11/SDL_x11keyboard.c @@ -135,7 +135,7 @@ static const struct { static const struct { - const SDL_Scancode const *table; + SDL_Scancode const *table; int table_size; } scancode_set[] = { { darwin_scancode_table, SDL_arraysize(darwin_scancode_table) },