tfixed diagnostic error message - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit ac6e34ea06ae4fefbd3fbe16f222a3452c6f4d8c
(DIR) parent a308b7507abb77940f3b4ba34655c5a7c234bee3
(HTM) Author: arg@mig29 <unknown>
Date: Fri, 8 Dec 2006 11:11:52 +0100
fixed diagnostic error message
Diffstat:
M draw.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/draw.c b/draw.c
t@@ -198,7 +198,7 @@ setfont(const char *fontstr) {
XFreeFont(dpy, dc.font.xfont);
dc.font.xfont = NULL;
if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
- eprint("error, cannot init 'fixed' font\n");
+ eprint("error, cannot load font: '%s'\n", fontstr);
dc.font.ascent = dc.font.xfont->ascent;
dc.font.descent = dc.font.xfont->descent;
}