printf("%s\n") -> puts()

This commit is contained in:
Denis Vlasenko
2007-10-01 12:05:12 +00:00
parent 0c97c9d437
commit feb7ae7f01
7 changed files with 15 additions and 15 deletions

View File

@ -17,7 +17,7 @@ static int print_matchpathcon(char *path, int noprint)
if (!noprint)
printf("%s\t%s\n", path, buf);
else
printf("%s\n", buf);
puts(buf);
freecon(buf);
return 0;