diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2020-01-18 14:44:13 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-05-07 12:55:04 +0200 |
commit | 98c6c162e5752332652d3b05dbdb0d272aa89d1a (patch) | |
tree | d64866c13ea1dd7affa0c1ac70f8fbcad7782be1 /nx-X11/programs | |
parent | 436eef46a28c8ad6100004bce2ac13d7e7437e04 (diff) | |
download | nx-libs-98c6c162e5752332652d3b05dbdb0d272aa89d1a.tar.gz nx-libs-98c6c162e5752332652d3b05dbdb0d272aa89d1a.tar.bz2 nx-libs-98c6c162e5752332652d3b05dbdb0d272aa89d1a.zip |
Splash.c: make variables static
They are not used from the outside.
Diffstat (limited to 'nx-X11/programs')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Splash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Splash.c b/nx-X11/programs/Xserver/hw/nxagent/Splash.c index 7e19d5c11..1bb39910b 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Splash.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Splash.c @@ -57,9 +57,9 @@ #define LOGODARKGRAY 0x222222 #define LOGOLIGHTGRAY 0xbbbbbb -XlibPixmap nxagentPixmapLogo; -XlibWindow nxagentSplashWindow = None; -Bool nxagentWMPassed = False; +static XlibPixmap nxagentPixmapLogo; +static XlibWindow nxagentSplashWindow = None; +static Bool nxagentWMPassed = False; static void nxagentPaintLogo(XlibWindow win, XlibGC gc, int scale, int width, int height); |