Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 13, 2010
1 parent 59bc1fd commit a6fecee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/x11/SDL_x11keyboard.c
Expand Up @@ -233,8 +233,8 @@ X11_InitKeyboard(_THIS)
sym = XKeycodeToKeysym(data->display, i, 0);
if (sym != NoSymbol) {
SDLKey key;
printf("code = %d, sym = 0x%X (%s) ", i - min_keycode, sym,
XKeysymToString(sym));
printf("code = %d, sym = 0x%X (%s) ", i - min_keycode,
(unsigned int) sym, XKeysymToString(sym));
key = X11_KeyCodeToSDLKey(data->display, i);
for (j = 0; j < SDL_arraysize(keymap); ++j) {
if (keymap[j] == key) {
Expand Down

0 comments on commit a6fecee

Please sign in to comment.