diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-04-19 09:24:25 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-04-19 09:24:25 +0200 |
commit | 22399a3bc05406a89f6ad717800b4d9ba41f6e0a (patch) | |
tree | 78e7c817a7df86050b755b2ea1eb03ff96f136e2 /main.c | |
parent | ad2508f9578195e703033df3cceb441f716261bd (diff) | |
download | dwm-22399a3bc05406a89f6ad717800b4d9ba41f6e0a.tar.gz |
fixed the border issue for mplayer, ff is definately broken when using F11 (fullscreen mode) 4.0
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c index 66645b3..7d3479e 100644 --- a/main.c +++ b/main.c @@ -81,7 +81,7 @@ initfont(const char *fontstr) { dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def); if(missing) { while(n--) - fprintf(stderr, "missing fontset: %s\n", missing[n]); + fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]); XFreeStringList(missing); } if(dc.font.set) { |