diff options
Diffstat (limited to 'window-buffer.c')
-rw-r--r-- | window-buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/window-buffer.c b/window-buffer.c index a2fa08ad..2f52ee3f 100644 --- a/window-buffer.c +++ b/window-buffer.c @@ -18,11 +18,11 @@ #include <sys/types.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <unistd.h> -#include <vis.h> #include "tmux.h" @@ -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 * |