diff options
author | nicm <nicm> | 2022-05-30 12:55:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-05-30 12:55:25 +0000 |
commit | 0a8f356c7278dba34a526adea03561f2063df359 (patch) | |
tree | 94ec991bb58019e824a6142f8711aa982d91a24c /window-buffer.c | |
parent | af611815ea70d687a15e20426ed1b88017d3d248 (diff) | |
download | rtmux-0a8f356c7278dba34a526adea03561f2063df359.tar.gz rtmux-0a8f356c7278dba34a526adea03561f2063df359.tar.bz2 rtmux-0a8f356c7278dba34a526adea03561f2063df359.zip |
Spacing/style nits.
Diffstat (limited to 'window-buffer.c')
-rw-r--r-- | window-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/window-buffer.c b/window-buffer.c index a2fa08ad..544a1155 100644 --- a/window-buffer.c +++ b/window-buffer.c @@ -308,7 +308,7 @@ window_buffer_get_key(void *modedata, void *itemdata, u_int line) } pb = paste_get_name(item->name); if (pb == NULL) - return KEYC_NONE; + return (KEYC_NONE); ft = format_create(NULL, NULL, FORMAT_NONE, 0); format_defaults(ft, NULL, NULL, 0, NULL); @@ -320,7 +320,7 @@ window_buffer_get_key(void *modedata, void *itemdata, u_int line) key = key_string_lookup_string(expanded); free(expanded); format_free(ft); - return key; + return (key); } static struct screen * |