summaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index 62cf4765..eceef642 100644
--- a/screen.c
+++ b/screen.c
@@ -661,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)