From 268570a10876a97360ed81f703c80b6ef6d16e66 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 Nov 2015 11:28:41 +0100 Subject: [PATCH] Make g_x11_xim and g_x11_xic both static --- gfx/common/x11_common.c | 4 ++-- gfx/common/x11_common.h | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/gfx/common/x11_common.c b/gfx/common/x11_common.c index 02149453cf..1f0e3cd871 100644 --- a/gfx/common/x11_common.c +++ b/gfx/common/x11_common.c @@ -34,8 +34,8 @@ Atom g_x11_quit_atom; static volatile sig_atomic_t g_x11_quit; bool g_x11_has_focus; Window g_x11_win; -XIM g_x11_xim; -XIC g_x11_xic; +static XIM g_x11_xim; +static XIC g_x11_xic; Display *g_x11_dpy; bool g_x11_true_full; diff --git a/gfx/common/x11_common.h b/gfx/common/x11_common.h index d7204278f6..44ed03fde4 100644 --- a/gfx/common/x11_common.h +++ b/gfx/common/x11_common.h @@ -38,8 +38,6 @@ extern Atom g_x11_quit_atom; extern bool g_x11_has_focus; extern Window g_x11_win; -extern XIC g_x11_xic; -extern XIM g_x11_xim; extern Display *g_x11_dpy; extern bool g_x11_true_full;