Replace printf by puts for fixed strings. This would avoid issues caused

by formats introduced in translated strings.
This commit is contained in:
nekral-guest
2008-01-24 21:07:14 +00:00
parent 8c229ea473
commit 28a9441f4f
7 changed files with 15 additions and 14 deletions

View File

@@ -55,7 +55,7 @@ int yes_or_no (int read_only)
* In read-only mode all questions are answered "no".
*/
if (read_only) {
printf (_("No\n"));
puts (_("No\n"));
return 0;
}