diff options
author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-11 12:52:57 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-11 12:52:57 +0200 |
commit | 16c67f32d62849792c8e6d4fdec22a1896f9c279 (patch) | |
tree | cb18262f3e207d8229bf0f8833f602a7b7903b03 /font.c | |
parent | 366d81e313e6dd4e9e6c61ed8dfca4b4b40ccde6 (diff) | |
download | dwm-16c67f32d62849792c8e6d4fdec22a1896f9c279.tar.gz |
fixed several stuff (gridwm gets better and better)
Diffstat (limited to 'font.c')
-rw-r--r-- | font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/font.c b/font.c index 99301b5..a6b8225 100644 --- a/font.c +++ b/font.c @@ -38,7 +38,7 @@ loadfont(Blitz *blitz, BlitzFont *font) font->set = XCreateFontSet(blitz->dpy, fontname, &missing, &n, &def); if(missing) { while(n--) - fprintf(stderr, "liblitz: missing fontset: %s\n", missing[n]); + fprintf(stderr, "missing fontset: %s\n", missing[n]); XFreeStringList(missing); if(font->set) { XFreeFontSet(blitz->dpy, font->set); @@ -72,7 +72,7 @@ loadfont(Blitz *blitz, BlitzFont *font) font->xfont = XLoadQueryFont(blitz->dpy, fontname); } if (!font->xfont) { - fprintf(stderr, "%s", "liblitz: error, cannot load 'fixed' font\n"); + fprintf(stderr, "%s", "error, cannot load 'fixed' font\n"); exit(1); } font->ascent = font->xfont->ascent; |