From c658d255e919d40619cc2a5730d502c7777830cc Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 8 Oct 2011 15:25:08 -0700 Subject: Fix some nit warnings. --- ChangeLog | 7 +++++++ nscd/nscd_proto.h | 2 ++ nss/getent.c | 1 - sysdeps/ieee754/flt-32/s_isinf_nsf.c | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 57a72ca87d..abb83dda1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-10-08 Roland McGrath + + * nscd/nscd_proto.h: Declare __nscd_setnetgrent. + + * nss/getent.c (netgroup_keys): Remove unused variable. + * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise. + 2011-10-08 Ulrich Drepper * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl. diff --git a/nscd/nscd_proto.h b/nscd/nscd_proto.h index 8aa29732ef..742c154fac 100644 --- a/nscd/nscd_proto.h +++ b/nscd/nscd_proto.h @@ -74,5 +74,7 @@ extern int __nscd_getservbyport_r (int port, const char *proto, size_t buflen, struct servent **result); extern int __nscd_innetgr (const char *netgroup, const char *host, const char *user, const char *domain); +extern int __nscd_setnetgrent (const char *group, struct __netgrent *datap); + #endif /* _NSCD_PROTO_H */ diff --git a/nss/getent.c b/nss/getent.c index b843433ed6..7d9422373c 100644 --- a/nss/getent.c +++ b/nss/getent.c @@ -472,7 +472,6 @@ static int netgroup_keys (int number, char *key[]) { int result = 0; - int i; if (number == 0) { diff --git a/sysdeps/ieee754/flt-32/s_isinf_nsf.c b/sysdeps/ieee754/flt-32/s_isinf_nsf.c index bc37785168..1e46e2ce4a 100644 --- a/sysdeps/ieee754/flt-32/s_isinf_nsf.c +++ b/sysdeps/ieee754/flt-32/s_isinf_nsf.c @@ -14,7 +14,7 @@ int __isinf_nsf (float x) { - int32_t ix,t; + int32_t ix; GET_FLOAT_WORD(ix,x); return (ix & 0x7fffffff) == 0x7f800000; } -- cgit 1.4.1