diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:19:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:19:15 +0000 |
commit | 11ae150c22408df81e6e544eb570666842c43d35 (patch) | |
tree | b3e9f9c478f4aa014bb8289ce1a42729bbe7d63f /libc/inet/rpc/svc_tcp.c | |
parent | 2ddf8e1aee392f161ad0be0e3d1ad4f3f062ffd1 (diff) | |
download | uClibc-alpine-11ae150c22408df81e6e544eb570666842c43d35.tar.bz2 uClibc-alpine-11ae150c22408df81e6e544eb570666842c43d35.tar.xz |
kill off simple unused warnings
Diffstat (limited to 'libc/inet/rpc/svc_tcp.c')
-rw-r--r-- | libc/inet/rpc/svc_tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/rpc/svc_tcp.c b/libc/inet/rpc/svc_tcp.c index 35040e278..4a2556159 100644 --- a/libc/inet/rpc/svc_tcp.c +++ b/libc/inet/rpc/svc_tcp.c @@ -265,7 +265,7 @@ makefd_xprt (int fd, u_int sendsize, u_int recvsize) } static bool_t -rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg) +rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg attribute_unused) { int sock; struct tcp_rendezvous *r; @@ -291,7 +291,7 @@ again: } static enum xprt_stat -rendezvous_stat (SVCXPRT *xprt) +rendezvous_stat (SVCXPRT *xprt attribute_unused) { return XPRT_IDLE; } |