diff options
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch.c b/editors/patch.c index 1c9e970..2bc594d 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -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--) { |