diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-06-10 12:45:09 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-06-10 22:44:20 -0700 |
commit | 5615eaf26469f20c2d8c3be5770e12564a1edfff (patch) | |
tree | cf9eb7a5797cd7c9dd4680b0463859dcd8376328 /nis/nis_print_group_entry.c | |
parent | b68e08db76547937ea6e1902e87a5ea98c906f0c (diff) | |
download | glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.gz |
Quash some new warnings from GCC 4.6.
Diffstat (limited to 'nis/nis_print_group_entry.c')
-rw-r--r-- | nis/nis_print_group_entry.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nis/nis_print_group_entry.c b/nis/nis_print_group_entry.c index 11680ae7dc..925c950299 100644 --- a/nis/nis_print_group_entry.c +++ b/nis/nis_print_group_entry.c @@ -1,4 +1,5 @@ -/* Copyright (c) 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc. +/* Copyright (c) 1997,1998,2000,2004,2006,2011 + Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997. @@ -156,7 +157,7 @@ nis_print_group_entry (const_nis_name group) { fputs (_(" Implicit nonmembers:\n"), stdout); for (i = 0; i < nomem_imp_cnt; ++i) - printf ("\t%s\n", &mem_imp[i][3]); + printf ("\t%s\n", &nomem_imp[i][3]); } else fputs (_(" No implicit nonmembers\n"), stdout); |