fixed diagnostic error message

This commit is contained in:
arg@mig29 2006-12-08 11:11:52 +01:00
parent a308b7507a
commit ac6e34ea06
1 changed files with 1 additions and 1 deletions

2
draw.c
View File

@ -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;
}