diff options
author | Denis Vlasenko | 2007-04-12 00:32:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-12 00:32:05 +0000 |
commit | 51742f4bb0c57a4d5063ece9437a2f34a42e52c8 (patch) | |
tree | 7a912fc65ff43bdb09078d75bfc02ad8f5380b47 /editors/patch.c | |
parent | 50f7f446ecaadef6895a4ee601567e0b68330637 (diff) | |
download | busybox-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.zip busybox-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.gz |
style fixes. No code changes
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/patch.c b/editors/patch.c index 4d1425e..11b2f25 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -62,7 +62,9 @@ static char *extract_filename(char *line, int patch_level) /* skip over (patch_level) number of leading directories */ for (i = 0; i < patch_level; i++) { - if(!(temp = strchr(filename_start_ptr, '/'))) break; + temp = strchr(filename_start_ptr, '/'); + if (!temp) + break; filename_start_ptr = temp + 1; } |