diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-15 12:39:25 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-15 12:39:25 +0100 |
commit | d6f5000c1303ca7c31759d380fe154a46bd7126b (patch) | |
tree | 8a67c768d3a94b33ce963576fc2c3f2e318afb90 /util-linux | |
parent | 454fe29a802f5f32b802df1a54324946d0b87669 (diff) | |
download | busybox-w32-d6f5000c1303ca7c31759d380fe154a46bd7126b.tar.gz busybox-w32-d6f5000c1303ca7c31759d380fe154a46bd7126b.tar.bz2 busybox-w32-d6f5000c1303ca7c31759d380fe154a46bd7126b.zip |
*: style fixes. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/rdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/rdev.c b/util-linux/rdev.c index 1212f841e..465281756 100644 --- a/util-linux/rdev.c +++ b/util-linux/rdev.c | |||
@@ -23,9 +23,9 @@ | |||
23 | int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 23 | int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
24 | int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | 24 | int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
25 | { | 25 | { |
26 | char const * const root_device = find_block_device("/"); | 26 | const char *root_device = find_block_device("/"); |
27 | 27 | ||
28 | if (root_device != NULL) { | 28 | if (root_device) { |
29 | printf("%s /\n", root_device); | 29 | printf("%s /\n", root_device); |
30 | return EXIT_SUCCESS; | 30 | return EXIT_SUCCESS; |
31 | } | 31 | } |