2020-01-03 21:58:13

by Giulio Benetti

[permalink] [raw]
Subject: [nfs-utils PATCH 2/7] rpcgen: rpc_util: add storeval args to prototype

storeval() prototype has no arguments and this can cause warnings during
building. Let's add its arguments to prototype according to its
implementation.

Signed-off-by: Giulio Benetti <[email protected]>
---
tools/rpcgen/rpc_util.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/rpcgen/rpc_util.h b/tools/rpcgen/rpc_util.h
index fa115bee..bd7b15ca 100644
--- a/tools/rpcgen/rpc_util.h
+++ b/tools/rpcgen/rpc_util.h
@@ -91,7 +91,7 @@ extern int nonfatalerrors;
/*
* rpc_util routines
*/
-void storeval();
+void storeval(list **, definition *);

#define STOREVAL(list,item) \
storeval(list,item)
--
2.20.1