summaryrefslogtreecommitdiff
path: root/coreutils/id.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/id.c')
-rw-r--r--coreutils/id.c2
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 */