Commit 298d3d627a37b17c2df8f3ce6ac0915ccb514d50

Sam Lantinga 2013-10-22T21:54:52

Fixed duplicate const warning

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/x11/SDL_x11keyboard.c b/src/video/x11/SDL_x11keyboard.c
index 9a2de45..f3b83c9 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) },