Skip to content

Commit

Permalink
linux: Changed two variables to be static.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 9, 2017
1 parent 37b49e6 commit f6eb23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/linux/SDL_ibus.c
Expand Up @@ -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)
Expand Down

0 comments on commit f6eb23a

Please sign in to comment.