diff options
author | Denis Vlasenko | 2006-11-27 16:49:31 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 16:49:31 +0000 |
commit | 079f8afa0a16112cbaf7012c82b38b7358b82141 (patch) | |
tree | 0d8cba8e45b1a8b975e0b8c7a8377703ab5547a6 /editors/patch.c | |
parent | 10d0d4eec7e3a292917f43f72afae20341d9ba11 (diff) | |
download | busybox-079f8afa0a16112cbaf7012c82b38b7358b82141.zip busybox-079f8afa0a16112cbaf7012c82b38b7358b82141.tar.gz |
style cleanup: return(a) -> return a, part 1
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/patch.c b/editors/patch.c index 4ddcd00..f11f8a1 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -43,7 +43,7 @@ static unsigned int copy_lines(FILE *src_stream, FILE *dest_stream, const unsign i++; } - return(i); + return i; } /* If patch_level is -1 it will remove all directory names @@ -67,13 +67,13 @@ static char *extract_filename(char *line, int patch_level) filename_start_ptr = temp + 1; } - return(xstrdup(filename_start_ptr)); + return xstrdup(filename_start_ptr); } static int file_doesnt_exist(const char *filename) { struct stat statbuf; - return(stat(filename, &statbuf)); + return stat(filename, &statbuf); } int patch_main(int argc, char **argv) @@ -269,5 +269,5 @@ int patch_main(int argc, char **argv) * 1 = Some hunks failed * 2 = More serious problems */ - return(ret); + return ret; } |