diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:31 +0000 |
commit | 079f8afa0a16112cbaf7012c82b38b7358b82141 (patch) | |
tree | 0d8cba8e45b1a8b975e0b8c7a8377703ab5547a6 /e2fsprogs/blkid/probe.c | |
parent | 10d0d4eec7e3a292917f43f72afae20341d9ba11 (diff) |
style cleanup: return(a) -> return a, part 1
Diffstat (limited to 'e2fsprogs/blkid/probe.c')
-rw-r--r-- | e2fsprogs/blkid/probe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/blkid/probe.c b/e2fsprogs/blkid/probe.c index a2165efee..ea9a619ee 100644 --- a/e2fsprogs/blkid/probe.c +++ b/e2fsprogs/blkid/probe.c @@ -706,7 +706,7 @@ int main(int argc, char **argv) dev = blkid_get_dev(cache, argv[1], BLKID_DEV_NORMAL); if (!dev) { printf("%s: %s has an unsupported type\n", argv[0], argv[1]); - return (1); + return 1; } printf("%s is type %s\n", argv[1], dev->bid_type ? dev->bid_type : "(null)"); @@ -716,6 +716,6 @@ int main(int argc, char **argv) printf("\tuuid is %s\n", dev->bid_uuid); blkid_free_dev(dev); - return (0); + return 0; } #endif |