summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2020-12-13 21:32:19 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2020-12-13 21:32:19 +0000
commit6404d7ffc1f055763aa53612da9db7ddce6df759 (patch)
tree96ed3a8429f4b47c5f5e128c558dcf17185b0871
parentde0b2d4f47bad36025dcf52755ce76cca6e715d9 (diff)
Notes
-rw-r--r--sys/kern/uipc_usrreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c
index 5cadd3d4af48..afea72fd2700 100644
--- a/sys/kern/uipc_usrreq.c
+++ b/sys/kern/uipc_usrreq.c
@@ -382,7 +382,7 @@ unp_pcb_lock_peer(struct unpcb *unp)
UNP_PCB_LOCK_ASSERT(unp);
unp2 = unp->unp_conn;
- if (__predict_false(unp2 == NULL))
+ if (unp2 == NULL)
return (NULL);
if (__predict_false(unp == unp2))
return (unp);