style: return(x) -> return (x)

Submitted by: mbr
This commit is contained in:
alfred 2002-02-05 19:31:16 +00:00
parent 33d91c2dd3
commit 703a63d190

View File

@ -721,7 +721,7 @@ __rpc_get_local_uid(SVCXPRT *transp, uid_t *uid)
cmcred = __svc_getcallercreds(transp);
if (cmcred == NULL)
return(-1);
return (-1);
*uid = cmcred->cmcred_euid;
return(0);
return (0);
}