Remove stray spaces after function names.

This commit is contained in:
nicm
2021-08-20 17:50:42 +00:00
parent 01b13de655
commit e463e8622d
9 changed files with 15 additions and 17 deletions

View File

@ -698,6 +698,6 @@ screen_mode_to_string(int mode)
strlcat(tmp, "CRLF,", sizeof tmp);
if (mode & MODE_KEXTENDED)
strlcat(tmp, "KEXTENDED,", sizeof tmp);
tmp[strlen (tmp) - 1] = '\0';
tmp[strlen(tmp) - 1] = '\0';
return (tmp);
}