fixed diagnostic error message
This commit is contained in:
parent
a308b7507a
commit
ac6e34ea06
1 changed files with 1 additions and 1 deletions
2
draw.c
2
draw.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue