diff options
author | Denis Vlasenko | 2007-10-01 12:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-01 12:05:12 +0000 |
commit | feb7ae7f01e13dce31118e5a58b09b237d25e58c (patch) | |
tree | b36f1a78441f586aa8bf5a2c8b055296d30c2777 /util-linux | |
parent | 0c97c9d43707da745fe2bc62ab2a69497ceaf666 (diff) | |
download | busybox-feb7ae7f01e13dce31118e5a58b09b237d25e58c.zip busybox-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.gz |
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 57e8569..c61af3d 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.c @@ -64,7 +64,7 @@ int losetup_main(int argc, char **argv) s = query_loop(dev); if (!s) { if (opt == 0x4) { - printf("%s\n", dev); + puts(dev); return EXIT_SUCCESS; } } else { |