home · contact · privacy
Removed redundant "return".
[plomrogue] / 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);
     }
 }