diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-01 12:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-01 12:05:12 +0000 |
commit | feb7ae7f01e13dce31118e5a58b09b237d25e58c (patch) | |
tree | b36f1a78441f586aa8bf5a2c8b055296d30c2777 /util-linux | |
parent | 0c97c9d43707da745fe2bc62ab2a69497ceaf666 (diff) | |
download | busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.gz busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.bz2 busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.zip |
printf("%s\n") -> puts()
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/losetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/losetup.c b/util-linux/losetup.c index 57e8569dc..c61af3d29 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.c | |||
@@ -64,7 +64,7 @@ int losetup_main(int argc, char **argv) | |||
64 | s = query_loop(dev); | 64 | s = query_loop(dev); |
65 | if (!s) { | 65 | if (!s) { |
66 | if (opt == 0x4) { | 66 | if (opt == 0x4) { |
67 | printf("%s\n", dev); | 67 | puts(dev); |
68 | return EXIT_SUCCESS; | 68 | return EXIT_SUCCESS; |
69 | } | 69 | } |
70 | } else { | 70 | } else { |