From 53e77acafcc0f419d4020ad63c030f6b577be34b Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 23 Jan 2014 17:13:38 +0000 Subject: no need to quote within warning --- conf.c | 4 ++-- 1 file 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]); } -- cgit 1.4.1