From aa3f2b7fd049e37b20c17b51005d0a375dd0086f Mon Sep 17 00:00:00 2001 From: David Delassus Date: Mon, 31 Jan 2011 13:52:43 +0100 Subject: [PATCH] Fix _WMFS_FONT, bug #83 Signed-off-by: Raphael Khaiat --- src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.c b/src/init.c index 436f1d0..6514125 100644 --- a/src/init.c +++ b/src/init.c @@ -70,7 +70,7 @@ init_font(void) /* Set font in _WMFS_FONT for eventual status tools */ XChangeProperty(dpy, ROOT, net_atom[wmfs_font], net_atom[utf8_string], 8, - PropModeReplace, (uchar*)&conf.font, strlen(conf.font)); + PropModeReplace, (uchar*)conf.font, strlen(conf.font)); return; }