summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2014-01-23 17:13:38 +0000
committerokan <okan>2014-01-23 17:13:38 +0000
commit53e77acafcc0f419d4020ad63c030f6b577be34b (patch)
treee347d21daea192cc1e133a0d737a2c1d261a8955
parent79248a385ba53bc41c1a8200799b6250f7c922bb (diff)
downloadcwm-53e77acafcc0f419d4020ad63c030f6b577be34b.tar.gz
cwm-53e77acafcc0f419d4020ad63c030f6b577be34b.tar.xz
cwm-53e77acafcc0f419d4020ad63c030f6b577be34b.zip
no need to quote within warning
-rw-r--r--conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index ffcc979..fce37ab 100644
--- a/conf.c
+++ b/conf.c
@@ -120,7 +120,7 @@ conf_screen(struct screen_ctx *sc)
 			xu_xorcolor(sc->xftcolor[CWM_COLOR_MENU_FONT], xc, &xc);
 			if (!XftColorAllocValue(X_Dpy, sc->visual, sc->colormap,
 			    &xc.color, &sc->xftcolor[CWM_COLOR_MENU_FONT_SEL]))
-				warnx("XftColorAllocValue: '%s'", Conf.color[i]);
+				warnx("XftColorAllocValue: %s", Conf.color[i]);
 			break;
 		}
 		if (XftColorAllocName(X_Dpy, sc->visual, sc->colormap,
@@ -128,7 +128,7 @@ conf_screen(struct screen_ctx *sc)
 			sc->xftcolor[i] = xc;
 			XftColorFree(X_Dpy, sc->visual, sc->colormap, &xc);
 		} else {
-			warnx("XftColorAllocName: '%s'", Conf.color[i]);
+			warnx("XftColorAllocName: %s", Conf.color[i]);
 			XftColorAllocName(X_Dpy, sc->visual, sc->colormap,
 			    color_binds[i], &sc->xftcolor[i]);
 		}