Some style nits.

This commit is contained in:
Nicholas Marriott
2022-04-06 16:39:46 +01:00
parent 0c84a20d2f
commit 3a6d82b7c8
16 changed files with 20 additions and 20 deletions

View File

@ -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)