aboutsummaryrefslogtreecommitdiff
path: root/editors/patch.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-26 14:32:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-26 14:32:57 +0000
commitf5d8c90d73777d912ddffea9dd7c537c3a1a43a5 (patch)
treea358be6a258f4c7c8905f1809737e74413df26c6 /editors/patch.c
parent2649f215aecf923713d2f9a379cf651437ddf499 (diff)
downloadbusybox-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.tar.gz
style fixes, no code changes
Diffstat (limited to 'editors/patch.c')
-rw-r--r--editors/patch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch.c b/editors/patch.c
index 1c9e97005..2bc594d16 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--) {