diff options
| author | Anselm R Garbe <anselm@garbe.us> | 2009-06-23 16:29:32 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <anselm@garbe.us> | 2009-06-23 16:29:32 +0100 | 
| commit | 0d8671a5ad040000541ebaa893582e520c7e33a3 (patch) | |
| tree | 960d8b435210097c8ecd5cd43ac2f87f9f86aef5 | |
| parent | 38e9b67026003fdce065ec220d2195232c881538 (diff) | |
declare buf only if XINERAMA support is used
| -rw-r--r-- | config.mk | 4 | ||||
| -rw-r--r-- | dwm.c | 2 | 
2 files changed, 3 insertions, 3 deletions
@@ -11,8 +11,8 @@ X11INC = /usr/X11R6/include  X11LIB = /usr/X11R6/lib  # Xinerama, un-comment if you want it -XINERAMALIBS = -L${X11LIB} -lXinerama -XINERAMAFLAGS = -DXINERAMA +#XINERAMALIBS = -L${X11LIB} -lXinerama +#XINERAMAFLAGS = -DXINERAMA  # includes and libs  INCS = -I. -I/usr/include -I${X11INC} @@ -599,7 +599,6 @@ die(const char *errstr, ...) {  void  drawbar(Monitor *m) { -	char buf[2];  	int x;  	unsigned int i, occ = 0, urg = 0;  	unsigned long *col; @@ -616,6 +615,7 @@ drawbar(Monitor *m) {  	dc.x = 0;  #ifdef XINERAMA  	{ +		char buf[2];  		buf[0] = m->screen_number + '0';  		buf[1] = '\0';  		dc.w = TEXTW(buf);  | 
