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

@@ -64,7 +64,7 @@ int add_groups (const char *list)
continue;
if (ngroups >= sysconf (_SC_NGROUPS_MAX)) {
fprintf (stderr, _("Warning: too many groups\n"));
fputs (_("Warning: too many groups\n"), stderr);
break;
}
tmp = (gid_t *) realloc (grouplist, (ngroups + 1) * sizeof (GETGROUPS_T));