fix a compile warning.
2 files changed, 4 insertions(+), 2 deletions(-)

M Makefile
M Manager.C
M Makefile +1 -1
@@ 4,7 4,7 @@ INCS	= -I/usr/X11R6/include
 
 CC	= gcc
 CCC	= g++
-CFLAGS	= -O2 $(INCS)
+CFLAGS	= -O2 -Wall $(INCS)
 OBJECTS	= Border.o Buttons.o Client.o Events.o Main.o Manager.o Rotated.o
 
 .c.o:

          
M Manager.C +3 -1
@@ 324,7 324,9 @@ unsigned long WindowManager::allocateCol
 	sprintf(error, "couldn't load %s colour", desc);
 	fatal(error);
 
-    } else return nearest.pixel;
+    }
+
+    return nearest.pixel;
 }