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 /selinux/matchpathcon.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 'selinux/matchpathcon.c')
-rw-r--r-- | selinux/matchpathcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selinux/matchpathcon.c b/selinux/matchpathcon.c index 2bc0a3304..bb7099ea6 100644 --- a/selinux/matchpathcon.c +++ b/selinux/matchpathcon.c | |||
@@ -17,7 +17,7 @@ static int print_matchpathcon(char *path, int noprint) | |||
17 | if (!noprint) | 17 | if (!noprint) |
18 | printf("%s\t%s\n", path, buf); | 18 | printf("%s\t%s\n", path, buf); |
19 | else | 19 | else |
20 | printf("%s\n", buf); | 20 | puts(buf); |
21 | 21 | ||
22 | freecon(buf); | 22 | freecon(buf); |
23 | return 0; | 23 | return 0; |