Clean up. Missed one instance of an encoder returning int instead of void. Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> --- Hi - Build-tested only. This can be squashed into [PATCH 11/12]. net/sunrpc/clnt.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 85f93c9..78c18fe 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -1770,9 +1770,8 @@ out_overflow: goto out_garbage; } -static int rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj) +static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj) { - return 0; } static int rpcproc_decode_null(void *rqstp, struct xdr_stream *xdr, void *obj) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html