diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2014-01-23 17:13:39 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2014-01-23 17:13:39 +0000 |
commit | 005e852daca552ea6b8720e33dbced0c18086437 (patch) | |
tree | 7f75da20a94f3928b999173132149ed67f554266 /app/cwm/conf.c | |
parent | cf202bd2d2b6b201214f373486fcc8bb9a4fd001 (diff) |
no need to quote within warning
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index b38f2c415..9f05d9e6a 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.161 2014/01/22 21:48:27 okan Exp $ + * $OpenBSD: conf.c,v 1.162 2014/01/23 17:13:38 okan Exp $ */ #include <sys/param.h> @@ -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]); } |