diff options
author | Denis Vlasenko | 2006-11-27 16:49:55 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 16:49:55 +0000 |
commit | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (patch) | |
tree | ffdef7f5ab4a33038d0a62c9355b48f362aa463e /modutils/insmod.c | |
parent | 079f8afa0a16112cbaf7012c82b38b7358b82141 (diff) | |
download | busybox-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.zip busybox-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.tar.gz |
style cleanup: return(a) -> return a, part 2
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index dd999a6..7b715b9 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -805,7 +805,7 @@ static int check_module_name_match(const char *filename, struct stat *statbuf, char *fullname = (char *) userdata; if (fullname[0] == '\0') - return (FALSE); + return FALSE; else { char *tmp, *tmp1 = xstrdup(filename); tmp = bb_get_last_path_component(tmp1); @@ -813,11 +813,11 @@ static int check_module_name_match(const char *filename, struct stat *statbuf, free(tmp1); /* Stop searching if we find a match */ m_filename = xstrdup(filename); - return (FALSE); + return FALSE; } free(tmp1); } - return (TRUE); + return TRUE; } |