From f3c5aa17809f6da5b5d6864f2383820ad1673810 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Thu, 23 Apr 2020 09:43:30 +0100 Subject: [PATCH] wmmoonclock: mark some file-scope variables static. Signed-off-by: Jeremy Sowden --- wmmoonclock/src/xutils.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wmmoonclock/src/xutils.c b/wmmoonclock/src/xutils.c index 347b46b..b313d53 100644 --- a/wmmoonclock/src/xutils.c +++ b/wmmoonclock/src/xutils.c @@ -43,14 +43,14 @@ /* * X11 Variables */ -int x_fd; -XSizeHints mysizehints; -XWMHints mywmhints; -Pixel back_pix, fore_pix; -char *Geometry = ""; -GC NormalGC; -XpmIcon wmgen; -Pixmap pixmask; +static int x_fd; +static XSizeHints mysizehints; +static XWMHints mywmhints; +static Pixel back_pix, fore_pix; +static char *Geometry = ""; +static GC NormalGC; +static XpmIcon wmgen; +static Pixmap pixmask;