--- a/src/video/x11/SDL_x11keyboard.c Thu Feb 07 16:14:43 2008 +0000
+++ b/src/video/x11/SDL_x11keyboard.c Fri Feb 08 08:35:49 2008 +0000
@@ -277,14 +277,16 @@
0, /* SDL_SCANCODE_SLEEP ? */
};
+/* *INDENT-OFF* */
static struct
{
SDL_scancode *table;
int table_size;
} scancode_set[] = {
- {
- darwin_scancode_table, SDL_arraysize(darwin_scancode_table)}, {
-xfree86_scancode_table, SDL_arraysize(xfree86_scancode_table)},};
+ { darwin_scancode_table, SDL_arraysize(darwin_scancode_table) },
+ { xfree86_scancode_table, SDL_arraysize(xfree86_scancode_table) },
+};
+/* *INDENT-OFF* */
int
X11_InitKeyboard(_THIS)