From daa885fdce84089c0e6c84af00cebeadc5ee5cf9 Mon Sep 17 00:00:00 2001 From: mycroft Date: Thu, 9 Oct 1997 15:19:48 +0000 Subject: [PATCH] Fix another white space glitch. --- usr.bin/rpcgen/rpc_cout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/rpcgen/rpc_cout.c b/usr.bin/rpcgen/rpc_cout.c index c0f0616e1b72..d38b845e6b19 100644 --- a/usr.bin/rpcgen/rpc_cout.c +++ b/usr.bin/rpcgen/rpc_cout.c @@ -1,4 +1,4 @@ -/* $NetBSD: rpc_cout.c,v 1.7 1997/10/09 15:12:24 mycroft Exp $ */ +/* $NetBSD: rpc_cout.c,v 1.8 1997/10/09 15:19:48 mycroft Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for * unrestricted use provided that this legend is included on all tape @@ -703,9 +703,9 @@ emit_single_in_line(decl, flag, rel) } if (flag == PUT) if (rel == REL_ALIAS) - f_print(fout, "%s(buf,objp->%s);\n", upp_case, decl->name); + f_print(fout, "%s(buf, objp->%s);\n", upp_case, decl->name); else - f_print(fout, "%s(buf,*genp++);\n", upp_case); + f_print(fout, "%s(buf, *genp++);\n", upp_case); else f_print(fout, "%s(buf);\n", upp_case);