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

@ -152,7 +152,7 @@ void addenv (const char *string, const char *value)
environ = __newenvp;
newenvp = __newenvp;
} else {
fprintf (stderr, _("Environment overflow\n"));
fputs (_("Environment overflow\n"), stderr);
free (newenvp[--newenvc]);
}
}