diff options
Diffstat (limited to 'sunrpc/clnt_raw.c')
-rw-r--r-- | sunrpc/clnt_raw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sunrpc/clnt_raw.c b/sunrpc/clnt_raw.c index 5b9bd482..79c0964 100644 --- a/sunrpc/clnt_raw.c +++ b/sunrpc/clnt_raw.c @@ -90,11 +90,11 @@ clntraw_create (u_long prog, u_long vers) XDR *xdrs; CLIENT *client; - if (clp == 0) + if (clp == NULL) { clp = (struct clntraw_private_s *) calloc (1, sizeof (*clp)); - if (clp == 0) - return (0); + if (clp == NULL) + return NULL; clntraw_private = clp; } xdrs = &clp->xdr_stream; |