diff options
author | benl <benl@FreeBSD.org> | 2011-05-18 20:52:52 +0000 |
---|---|---|
committer | benl <benl@FreeBSD.org> | 2011-05-18 20:52:52 +0000 |
commit | 2f470acfb599f3f99ff62a16d7c80e66be3fb291 (patch) | |
tree | b6895c901f31bf8c63d94a2fce56f73795d18631 | |
parent | c284bd0acca4fe2b124844c65d42fe0bfb8f2656 (diff) | |
download | FreeBSD-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)
-rw-r--r-- | usr.bin/rpcgen/rpc_hout.c | 2 | ||||
-rw-r--r-- | usr.bin/rpcgen/rpc_svcout.c | 2 | ||||
-rw-r--r-- | usr.bin/rpcgen/rpc_tblout.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rpcgen/rpc_hout.c b/usr.bin/rpcgen/rpc_hout.c index 7607ef7..6aa6ff7 100644 --- a/usr.bin/rpcgen/rpc_hout.c +++ b/usr.bin/rpcgen/rpc_hout.c @@ -500,7 +500,7 @@ pdeclaration(const char *name, declaration *dec, int tab, const char *separator) break; } } - f_print(fout, separator); + fputs(separator, fout); } static int 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); diff --git a/usr.bin/rpcgen/rpc_tblout.c b/usr.bin/rpcgen/rpc_tblout.c index f96bdfc..618d1f9 100644 --- a/usr.bin/rpcgen/rpc_tblout.c +++ b/usr.bin/rpcgen/rpc_tblout.c @@ -103,7 +103,7 @@ write_table(definition *def) expected = 0; } else { expected = 1; - f_print(fout, null_entry); + fputs(null_entry, fout); } for (proc = vp->procs; proc != NULL; proc = proc->next) { current = atoi(proc->proc_num); @@ -141,7 +141,7 @@ write_table(definition *def) } /* print the table trailer */ - f_print(fout, tbl_end); + fputs(tbl_end, fout); f_print(fout, tbl_nproc, progvers, progvers, progvers); } } |