diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-04-10 09:54:29 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-04-10 09:54:29 +0000 |
commit | e5b3858944b5006e0e550c6ec44bf500d459ce43 (patch) | |
tree | 3935e892c1447927ae65f5d4d784d0b83212ac56 /window.c | |
parent | 09e6b7c13788c34cd35a2c788a53ebf4a45ce725 (diff) | |
download | rtmux-e5b3858944b5006e0e550c6ec44bf500d459ce43.tar.gz rtmux-e5b3858944b5006e0e550c6ec44bf500d459ce43.tar.bz2 rtmux-e5b3858944b5006e0e550c6ec44bf500d459ce43.zip |
Sync OpenBSD patchset 1087:
Minor style nits - return ().
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -112,7 +112,7 @@ winlink_find_by_window_id(struct winlinks *wwl, u_int id) if (wl->window->id == id) return (wl); } - return NULL; + return (NULL); } int @@ -270,7 +270,7 @@ window_find_by_id(u_int id) if (w->id == id) return (w); } - return NULL; + return (NULL); } struct window * |