home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39ab34a
)
Removed redundant "return".
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 10 Mar 2014 14:25:47 +0000
(15:25 +0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 10 Mar 2014 14:25:47 +0000
(15:25 +0100)
src/client/windows.c
patch
|
blob
|
history
diff --git
a/src/client/windows.c
b/src/client/windows.c
index da830377e4d7d801e3382fe65aa4666177a744be..e15a65ac0becfbb33053c3c57ab2fc5bc194fc5b 100644
(file)
--- a/
src/client/windows.c
+++ b/
src/client/windows.c
@@
-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);
}
}