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

@ -700,7 +700,7 @@ static void showfiles(void)
printf("%s%-*s", matches[n],
(int)(column_width - strlen(matches[n])), "");
}
printf("%s\n", matches[n]);
puts(matches[n]);
}
}