summaryrefslogtreecommitdiffstats
path: root/usr.bin/rpcgen/rpc_svcout.c
diff options
context:
space:
mode:
authorbenl <benl@FreeBSD.org>2011-05-18 20:52:52 +0000
committerbenl <benl@FreeBSD.org>2011-05-18 20:52:52 +0000
commit2f470acfb599f3f99ff62a16d7c80e66be3fb291 (patch)
treeb6895c901f31bf8c63d94a2fce56f73795d18631 /usr.bin/rpcgen/rpc_svcout.c
parentc284bd0acca4fe2b124844c65d42fe0bfb8f2656 (diff)
downloadFreeBSD-src-2f470acfb599f3f99ff62a16d7c80e66be3fb291.zip
FreeBSD-src-2f470acfb599f3f99ff62a16d7c80e66be3fb291.tar.gz
Fix clang warnings.
Note: these were actually bugs (printf with no format string). Approved by: philip (mentor)
Diffstat (limited to 'usr.bin/rpcgen/rpc_svcout.c')
-rw-r--r--usr.bin/rpcgen/rpc_svcout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/rpcgen/rpc_svcout.c b/usr.bin/rpcgen/rpc_svcout.c
index 40fc61c..122408b 100644
--- a/usr.bin/rpcgen/rpc_svcout.c
+++ b/usr.bin/rpcgen/rpc_svcout.c
@@ -349,7 +349,7 @@ write_real_program(definition *def)
f_print(fout, "(");
/* arg name */
if (proc->arg_num > 1)
- f_print(fout, proc->args.argname);
+ fputs(proc->args.argname, fout);
else
ptype(proc->args.decls->decl.prefix,
proc->args.decls->decl.type, 0);
OpenPOWER on IntegriCloud