diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-24 15:23:18 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-24 15:23:18 +0000 |
commit | 8e3ef613b18f5994bd0394841c50cda0371fd236 (patch) | |
tree | 9a7858e53219d7ef63278d04bac35a1c5d1598f6 /app/xsetroot/xsetroot.c | |
parent | e4515e8b0dfc4daf35a507b735f0b2c3a76ac1d5 (diff) |
Update to xsetroot 1.0.3
Diffstat (limited to 'app/xsetroot/xsetroot.c')
-rw-r--r-- | app/xsetroot/xsetroot.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/xsetroot/xsetroot.c b/app/xsetroot/xsetroot.c index c49d7242b..27db7f2b9 100644 --- a/app/xsetroot/xsetroot.c +++ b/app/xsetroot/xsetroot.c @@ -45,16 +45,16 @@ in this Software without prior written authorization from The Open Group. #define Dynamic 1 -char *program_name; -Display *dpy; -int screen; -Window root; -char *fore_color = NULL; -char *back_color = NULL; -int reverse = 0; -int save_colors = 0; -int unsave_past = 0; -Pixmap save_pixmap = (Pixmap)None; +static char *program_name; +static Display *dpy; +static int screen; +static Window root; +static char *fore_color = NULL; +static char *back_color = NULL; +static int reverse = 0; +static int save_colors = 0; +static int unsave_past = 0; +static Pixmap save_pixmap = (Pixmap)None; static void usage(void); static void FixupState(void); |