aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-07-26 14:33:52 -0700
committerRoland McGrath <roland@hack.frob.com>2012-07-26 14:35:05 -0700
commit9f98c16cfe10fd70fedd647b328adac1a9b38f78 (patch)
tree146de8d69bf62de29eaca2c33fa38febfd087c96
parentf3c22df3c5d5dce995a485df23f2dd0bb89a66d5 (diff)
downloadglibc-9f98c16cfe10fd70fedd647b328adac1a9b38f78.tar
glibc-9f98c16cfe10fd70fedd647b328adac1a9b38f78.tar.gz
glibc-9f98c16cfe10fd70fedd647b328adac1a9b38f78.tar.bz2
glibc-9f98c16cfe10fd70fedd647b328adac1a9b38f78.zip
Fix some -Wformat warnings in rpcgen.
-rw-r--r--ChangeLog7
-rw-r--r--sunrpc/rpc_hout.c2
-rw-r--r--sunrpc/rpc_main.c2
-rw-r--r--sunrpc/rpc_svcout.c2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9fb871da32..91826c2a0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-07-26 Roland McGrath <roland@hack.frob.com>
+
+ * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
+ rather than a string variable.
+ * sunrpc/rpc_main.c (h_output): Likewise.
+ * sunrpc/rpc_svcout.c (write_real_program): Likewise.
+
2012-07-26 Pino Toscano <toscano.pino@tiscali.it>
* inet/check_native.c: New file.
diff --git a/sunrpc/rpc_hout.c b/sunrpc/rpc_hout.c
index 31b6d3a3fe..10f793d233 100644
--- a/sunrpc/rpc_hout.c
+++ b/sunrpc/rpc_hout.c
@@ -579,7 +579,7 @@ pdeclaration (const char *name, declaration * dec, int tab,
break;
}
}
- f_print (fout, separator);
+ f_print (fout, "%s", separator);
}
static int
diff --git a/sunrpc/rpc_main.c b/sunrpc/rpc_main.c
index 3096455eec..06d951aa6a 100644
--- a/sunrpc/rpc_main.c
+++ b/sunrpc/rpc_main.c
@@ -643,7 +643,7 @@ h_output (const char *infile, const char *define, int extend,
}
else if (tblflag)
{
- fprintf (fout, rpcgen_table_dcl);
+ fprintf (fout, "%s", rpcgen_table_dcl);
}
if (Cflag)
diff --git a/sunrpc/rpc_svcout.c b/sunrpc/rpc_svcout.c
index be234aee8a..4f12a8146c 100644
--- a/sunrpc/rpc_svcout.c
+++ b/sunrpc/rpc_svcout.c
@@ -353,7 +353,7 @@ write_real_program (const definition * def)
f_print (fout, " (");
/* arg name */
if (proc->arg_num > 1)
- f_print (fout, proc->args.argname);
+ f_print (fout, "%s", proc->args.argname);
else
ptype (proc->args.decls->decl.prefix,
proc->args.decls->decl.type, 0);