diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-12-01 15:34:27 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-12-01 15:34:27 +0000 |
commit | 3a166623bfb6e97f6308e8b32e6f9f1d24c0650b (patch) | |
tree | e780d06167f145713f8f35b2c04c912f670cb112 /usr.bin/rpcgen | |
parent | d87fc95cb42b08c638b6a25a2024a36b39db7efc (diff) |
Format string fixes from art's amd64 tree.
ok rohee@ espie@
Diffstat (limited to 'usr.bin/rpcgen')
-rw-r--r-- | usr.bin/rpcgen/rpc_hout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rpcgen/rpc_hout.c b/usr.bin/rpcgen/rpc_hout.c index f45f833dbd7..2e329f81a6c 100644 --- a/usr.bin/rpcgen/rpc_hout.c +++ b/usr.bin/rpcgen/rpc_hout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rpc_hout.c,v 1.15 2003/07/10 00:06:51 david Exp $ */ +/* $OpenBSD: rpc_hout.c,v 1.16 2003/12/01 15:34:26 grange Exp $ */ /* $NetBSD: rpc_hout.c,v 1.4 1995/06/11 21:49:55 pk Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -482,7 +482,7 @@ pdeclaration(name, dec, tab, separator) break; } } - fprintf(fout, separator); + fprintf(fout, "%s", separator); } static int |