wmmoonclock: mark some file-scope variables static.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
This commit is contained in:
Jeremy Sowden 2020-04-23 09:43:30 +01:00 committed by Carlos R. Mafra
parent 9fda6b107a
commit f3c5aa1780

View file

@ -43,14 +43,14 @@
/* /*
* X11 Variables * X11 Variables
*/ */
int x_fd; static int x_fd;
XSizeHints mysizehints; static XSizeHints mysizehints;
XWMHints mywmhints; static XWMHints mywmhints;
Pixel back_pix, fore_pix; static Pixel back_pix, fore_pix;
char *Geometry = ""; static char *Geometry = "";
GC NormalGC; static GC NormalGC;
XpmIcon wmgen; static XpmIcon wmgen;
Pixmap pixmask; static Pixmap pixmask;