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 /e2fsprogs/e2fsck.c | |
parent | 10d0d4eec7e3a292917f43f72afae20341d9ba11 (diff) | |
download | busybox-079f8afa0a16112cbaf7012c82b38b7358b82141.zip busybox-079f8afa0a16112cbaf7012c82b38b7358b82141.tar.gz |
style cleanup: return(a) -> return a, part 1
Diffstat (limited to 'e2fsprogs/e2fsck.c')
-rw-r--r-- | e2fsprogs/e2fsck.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c index ea5b08c..c482441 100644 --- a/e2fsprogs/e2fsck.c +++ b/e2fsprogs/e2fsck.c @@ -739,7 +739,7 @@ static struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx, int *control) if (*control >= ctx->dir_info_count) return 0; - return(ctx->dir_info + (*control)++); + return ctx->dir_info + (*control)++; } /* @@ -870,7 +870,7 @@ static struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx, int *control) if (*control >= ctx->dx_dir_info_count) return 0; - return(ctx->dx_dir_info + (*control)++); + return ctx->dx_dir_info + (*control)++; } #endif /* ENABLE_HTREE */ @@ -1055,7 +1055,7 @@ static errcode_t ea_refcount_create(int size, ext2_refcount_t *ret) errout: ea_refcount_free(refcount); - return(retval); + return retval; } /* @@ -4929,7 +4929,7 @@ static int search_dirent_proc(ext2_ino_t dir, int entry, p->dir = dir; sd->count--; - return(sd->count ? 0 : DIRENT_ABORT); + return sd->count ? 0 : DIRENT_ABORT; } |