diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:59:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:59:15 +0000 |
commit | 097c324f59e00182c9a2ca9e7a8b2fe06a078c6c (patch) | |
tree | 4817bcd854907cb2cd905780e54ea24faf1c80c5 /e2fsprogs | |
parent | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (diff) | |
download | busybox-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.gz |
fix remaining survivors of the return(a) cleanup
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/e2fsck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c index efaec7d8f..408b2758d 100644 --- a/e2fsprogs/e2fsck.c +++ b/e2fsprogs/e2fsck.c @@ -12520,7 +12520,7 @@ cleanup: if (io) io_channel_close(io); ext2fs_free_mem(&buf); - return (ret_sb); + return ret_sb; } |