diff options
author | pfg <pfg@FreeBSD.org> | 2016-09-08 15:12:55 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-09-08 15:12:55 +0000 |
commit | 87eef91d299e2e52033532ece80c8acec27302e7 (patch) | |
tree | fd6b729a3645fa459b0dfea4f1ab013b1345a7aa | |
parent | 1061080342f93763ed70aed2cee2f26549de6a07 (diff) | |
download | FreeBSD-src-87eef91d299e2e52033532ece80c8acec27302e7.zip FreeBSD-src-87eef91d299e2e52033532ece80c8acec27302e7.tar.gz |
MFC r303889:
libc/rpc: replace comma with semicolon when pertinent.
Uses of commas instead of a semicolons can easily go undetected. The comma
can serve as a statement separator but this shouldn't be abused when
statements are meant to be standalone.
-rw-r--r-- | lib/libc/rpc/svc_vc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/rpc/svc_vc.c b/lib/libc/rpc/svc_vc.c index 304f90a..6ce99d3 100644 --- a/lib/libc/rpc/svc_vc.c +++ b/lib/libc/rpc/svc_vc.c @@ -740,7 +740,7 @@ svc_vc_rendezvous_ops(xprt) ops.xp_reply = (bool_t (*)(SVCXPRT *, struct rpc_msg *))abort; ops.xp_freeargs = - (bool_t (*)(SVCXPRT *, xdrproc_t, void *))abort, + (bool_t (*)(SVCXPRT *, xdrproc_t, void *))abort; ops.xp_destroy = svc_vc_destroy; ops2.xp_control = svc_vc_rendezvous_control; } |