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

@ -146,7 +146,7 @@ parse_window_name(const char *in)
name = copy = xstrdup(in);
if (*name == '"')
name++;
name[strcspn (name, "\"")] = '\0';
name[strcspn(name, "\"")] = '\0';
if (strncmp(name, "exec ", (sizeof "exec ") - 1) == 0)
name = name + (sizeof "exec ") - 1;