From b856f875e8b72c48ef9b983b702f614615fc80b3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 1 Jul 2000 04:35:11 +0000 Subject: Update. * sunrpc/rpc_cout.c (inline_struct): Add missing braces in generated expressions. Patch by Darren McClelland . --- sunrpc/rpc_cout.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sunrpc/rpc_cout.c') diff --git a/sunrpc/rpc_cout.c b/sunrpc/rpc_cout.c index a8471cacc9..808a5053cd 100644 --- a/sunrpc/rpc_cout.c +++ b/sunrpc/rpc_cout.c @@ -524,11 +524,11 @@ inline_struct (definition *def, int flag) f_print (fout, "buf = XDR_INLINE (xdrs, %d * BYTES_PER_XDR_UNIT);", size); else if (size == 0) f_print (fout, - "buf = XDR_INLINE (xdrs, %s * BYTES_PER_XDR_UNIT);", + "buf = XDR_INLINE (xdrs, (%s) * BYTES_PER_XDR_UNIT);", sizestr); else f_print (fout, - "buf = XDR_INLINE(xdrs, (%d + (%s)) * BYTES_PER_XDR_UNIT);", + "buf = XDR_INLINE (xdrs, (%d + (%s)) * BYTES_PER_XDR_UNIT);", size, sizestr); f_print (fout, "\n"); tabify (fout, indent + 1); @@ -573,15 +573,15 @@ inline_struct (definition *def, int flag) /* were already looking at a xdr_inlineable structure */ if (sizestr == NULL) f_print (fout, - "\t\tbuf = XDR_INLINE(xdrs,%d * BYTES_PER_XDR_UNIT);", + "\t\tbuf = XDR_INLINE (xdrs, %d * BYTES_PER_XDR_UNIT);", size); else if (size == 0) f_print (fout, - "\t\tbuf = XDR_INLINE(xdrs,%s * BYTES_PER_XDR_UNIT);", + "\t\tbuf = XDR_INLINE (xdrs, (%s) * BYTES_PER_XDR_UNIT);", sizestr); else f_print (fout, - "\t\tbuf = XDR_INLINE(xdrs,(%d + %s)* BYTES_PER_XDR_UNIT);", + "\t\tbuf = XDR_INLINE (xdrs, (%d + %s)* BYTES_PER_XDR_UNIT);", size, sizestr); f_print (fout, "\n\t\tif (buf == NULL) {\n"); psav = cur; -- cgit v1.2.3