* src/groupmems.c: Ignore the return value of fputs().

This commit is contained in:
nekral-guest 2008-07-27 22:30:39 +00:00
parent d6f96fa07e
commit a22551d56b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-07-27 Nicolas François <nicolas.francois@centraliens.net>
* src/groupmems.c: Ignore the return value of fputs().
2008-07-27 Nicolas François <nicolas.francois@centraliens.net>
* src/groupmems.c (whoami): Make sure usr and grp are not NULL

View File

@ -111,7 +111,7 @@ static void members (char **members)
static void usage (void)
{
fputs (_("Usage: groupmems -a username | -d username | -D | -l [-g groupname]\n"), stderr);
(void) fputs (_("Usage: groupmems -a username | -d username | -D | -l [-g groupname]\n"), stderr);
fail_exit (EXIT_USAGE);
}