diff options
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -21,7 +21,6 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <vis.h> #include "tmux.h" @@ -662,9 +661,9 @@ screen_mode_to_string(int mode) static char tmp[1024]; if (mode == 0) - return "NONE"; + return ("NONE"); if (mode == ALL_MODES) - return "ALL"; + return ("ALL"); *tmp = '\0'; if (mode & MODE_CURSOR) |