* src/groupmems.c: Ignore the return value of fputs().
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 27 Jul 2008 22:30:39 +0000 (22:30 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 27 Jul 2008 22:30:39 +0000 (22:30 +0000)
ChangeLog
src/groupmems.c

index aef35493c38eb97735b6e819a63941b9123725c2..1b55c5473043f16f86b0db6b5e5644c4f9d02892 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 9a2c2c7ef1abd733926af759f7f8fd2224e5f1cf..246585726d35dad8d274c0597029fe283073bcf7 100644 (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);
 }