aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-04-01 20:53:47 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-04-01 20:53:47 +0000
commitc829bdf5370e2f96f533beb627cbb5062a68ae80 (patch)
treefc2bed243f0f7d06e28d493be718fa248fb65e4a /window.c
parent20d10c608d0f6f9e111677656e8d11680d3fc47b (diff)
downloadrtmux-c829bdf5370e2f96f533beb627cbb5062a68ae80.tar.gz
rtmux-c829bdf5370e2f96f533beb627cbb5062a68ae80.tar.bz2
rtmux-c829bdf5370e2f96f533beb627cbb5062a68ae80.zip
Minor style nits - return ().
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.c b/window.c
index 036bb941..4a013405 100644
--- a/window.c
+++ b/window.c
@@ -115,7 +115,7 @@ winlink_find_by_window_id(struct winlinks *wwl, u_int id)
if (wl->window->id == id)
return (wl);
}
- return NULL;
+ return (NULL);
}
int
@@ -273,7 +273,7 @@ window_find_by_id(u_int id)
if (w->id == id)
return (w);
}
- return NULL;
+ return (NULL);
}
struct window *