home · contact · privacy
Removed redundant "return".
authorChristian Heller <c.heller@plomlompom.de>
Mon, 10 Mar 2014 14:25:47 +0000 (15:25 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 10 Mar 2014 14:25:47 +0000 (15:25 +0100)
src/client/windows.c

index da830377e4d7d801e3382fe65aa4666177a744be..e15a65ac0becfbb33053c3c57ab2fc5bc194fc5b 100644 (file)
@@ -505,7 +505,7 @@ static void draw_wins(struct Win * w)
     struct Win * next = get_win_after(w->id);
     if (next)
     {
-        return draw_wins(next);
+        draw_wins(next);
     }
 }