Turn g_x11_quit into static variable

This commit is contained in:
twinaphex 2015-11-19 11:08:38 +01:00
parent f364ff0649
commit 91144ed53f
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,7 @@ static Atom XA_NET_WM_STATE;
static Atom XA_NET_WM_STATE_FULLSCREEN;
static Atom XA_NET_MOVERESIZE_WINDOW;
Atom g_x11_quit_atom;
volatile sig_atomic_t g_x11_quit;
static volatile sig_atomic_t g_x11_quit;
bool g_x11_has_focus;
Window g_x11_win;
XIC g_x11_xic;

View File

@ -36,7 +36,6 @@
#include "../video_context_driver.h"
extern Atom g_x11_quit_atom;
extern volatile sig_atomic_t g_x11_quit;
extern bool g_x11_has_focus;
extern Window g_x11_win;
extern XIC g_x11_xic;