fixed diagnostic error message

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

2
draw.c
View File

@ -108,7 +108,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;
}