From: Ulrich Drepper Date: Tue, 23 Nov 1999 17:10:21 +0000 (+0000) Subject: (printbody): Fix -CLMNab output. X-Git-Tag: upstream/2.30~26536 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d8d74583abec02470a87ac1481f7dc3b2fa33b5;p=external%2Fglibc.git (printbody): Fix -CLMNab output. --- diff --git a/sunrpc/rpc_clntout.c b/sunrpc/rpc_clntout.c index 0b4f645..1e6bb56 100644 --- a/sunrpc/rpc_clntout.c +++ b/sunrpc/rpc_clntout.c @@ -268,14 +268,14 @@ printbody (proc_list * proc) else fprintf (fout, "\t if "); fprintf (fout, - "(clnt_call (clnt, %s, (xdrproc_t) xdr_void", proc->proc_name); + "(clnt_call (clnt, %s, (xdrproc_t) xdr_void, ", proc->proc_name); fprintf (fout, "(caddr_t) NULL,\n\t\t(xdrproc_t) xdr_%s, (caddr_t) %s%s,", stringfix(proc->res_type), (mtflag)?"":ampr(proc->res_type), RESULT); if (mtflag) - fprintf (fout, "\n\t\tTIMEOUT));\n}\n"); + fprintf (fout, "\n\t\tTIMEOUT));\n\n"); else fprintf (fout, "\n\t\tTIMEOUT) != RPC_SUCCESS) {\n"); }