aewl
changeset 627:f83ac177a3a0
fixed diagnostic error message
author | arg@mig29 |
---|---|
date | Fri, 08 Dec 2006 11:11:52 +0100 |
parents | 2644c951fc74 |
children | a75123ef4b5f |
files | draw.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/draw.c Fri Dec 08 10:40:09 2006 +0100 1.2 +++ b/draw.c Fri Dec 08 11:11:52 2006 +0100 1.3 @@ -198,7 +198,7 @@ 1.4 XFreeFont(dpy, dc.font.xfont); 1.5 dc.font.xfont = NULL; 1.6 if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) 1.7 - eprint("error, cannot init 'fixed' font\n"); 1.8 + eprint("error, cannot load font: '%s'\n", fontstr); 1.9 dc.font.ascent = dc.font.xfont->ascent; 1.10 dc.font.descent = dc.font.xfont->descent; 1.11 }