Browse Source

linux: Changed two variables to be static.

Philipp Wiesemann 8 years ago
parent
commit
f6eb23a617
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/linux/SDL_ibus.c

+ 1 - 1
src/core/linux/SDL_ibus.c

@@ -45,7 +45,7 @@ static char *input_ctx_path = NULL;
 static SDL_Rect ibus_cursor_rect = { 0, 0, 0, 0 };
 static DBusConnection *ibus_conn = NULL;
 static char *ibus_addr_file = NULL;
-int inotify_fd = -1, inotify_wd = -1;
+static int inotify_fd = -1, inotify_wd = -1;
 
 static Uint32
 IBus_ModState(void)