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 /coreutils/id.c | |
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 'coreutils/id.c')
-rw-r--r-- | coreutils/id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/id.c b/coreutils/id.c index 536e946c0..f72a027fa 100644 --- a/coreutils/id.c +++ b/coreutils/id.c | |||
@@ -92,7 +92,7 @@ int id_main(int argc, char **argv) | |||
92 | if (getcon(&scontext)) { | 92 | if (getcon(&scontext)) { |
93 | bb_error_msg_and_die("can't get process context"); | 93 | bb_error_msg_and_die("can't get process context"); |
94 | } | 94 | } |
95 | printf("%s\n", scontext); | 95 | puts(scontext); |
96 | } | 96 | } |
97 | #endif | 97 | #endif |
98 | /* exit */ | 98 | /* exit */ |