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. Detected with devel/coccinelle following a hint from DragonFlyBSD. MFC after: 1 month
This commit is contained in:
parent
75e2eb0501
commit
8e60fa95cb
@ -700,7 +700,7 @@ svc_vc_rendezvous_ops(SVCXPRT *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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user