home · contact · privacy
Corrected broken if.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 1 May 2013 23:38:59 +0000 (01:38 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 1 May 2013 23:38:59 +0000 (01:38 +0200)
windows.c

index 01981e5e883cd6372b5e90c404d164587798695f..323d0c6aed13421e91227644e4f8537e8e39421d 100644 (file)
--- a/windows.c
+++ b/windows.c
@@ -153,7 +153,7 @@ void draw_windows_borders (struct Win * win, struct Win * win_active, struct Cor
 
 void draw_window(struct Win * win) {
 // Draw window content if visible.
-  if (win->height > 1 && win->width > 1) ;
+  if (win->height > 1 && win->width > 1)
     win->draw(win); }
 
 void draw_windows (struct Win * win) {