style fixes, no code changes

This commit is contained in:
Denis Vlasenko
2008-06-26 14:32:57 +00:00
parent 2649f215ae
commit f5d8c90d73
11 changed files with 19 additions and 19 deletions

View File

@@ -50,7 +50,7 @@ static char *extract_filename(char *line, int patch_level, const char *pat)
if (strncmp(line, pat, 4) == 0) {
/* Terminate string at end of source filename */
line[strcspn(line,"\t\n\r")] = '\0';
line[strcspn(line, "\t\n\r")] = '\0';
/* Skip over (patch_level) number of leading directories */
while (patch_level--) {