summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2007-03-12 14:24:33 +0100
committerTilman Sauerbeck <tilman@code-monkey.de>2007-03-12 14:24:33 +0100
commitfa689d8b3862656879ee887e2489ba795f270bbd (patch)
tree493ffb21bd5e5e6f0391d03bc94fcc1c76d2ab9d
parent7409bb892aca173cb56ab56bf940b486c0281aaf (diff)
Constified some variables.
-rw-r--r--xcompmgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xcompmgr.c b/xcompmgr.c
index 84f2703..77dc9db 100644
--- a/xcompmgr.c
+++ b/xcompmgr.c
@@ -752,7 +752,7 @@ find_win (Display *dpy, Window id)
return 0;
}
-static char *backgroundProps[] = {
+static const char *backgroundProps[] = {
"_XROOTPMAP_ID",
"_XSETROOT_ID",
0,
@@ -1734,7 +1734,7 @@ static int
error (Display *dpy, XErrorEvent *ev)
{
int o;
- char *name = 0;
+ const char *name = 0;
if (should_ignore (dpy, ev->serial))
return 0;