git: ee9b37ae5c11 - main - jail: fix build after the previous commit

Mateusz Guzik mjg at FreeBSD.org
Sun Feb 21 21:10:32 UTC 2021


The branch main has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=ee9b37ae5c115c41835119bb5c9d2e14c83abd65

commit ee9b37ae5c115c41835119bb5c9d2e14c83abd65
Author:     Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-02-21 19:57:21 +0000
Commit:     Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-02-21 21:05:25 +0000

    jail: fix build after the previous commit
    
    Noted by: Michael Butler <imb protected-networks.net>
---
 sys/kern/kern_jail.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c
index 48c91a95bf1a..342af50462f2 100644
--- a/sys/kern/kern_jail.c
+++ b/sys/kern/kern_jail.c
@@ -2671,7 +2671,7 @@ prison_free_not_last(struct prison *pr)
 	    ("prison_free_not_last freed last ref on prison %p (jid=%d).",
 	     pr, pr->pr_id));
 #else
-	refcount_release(&pr>pr_ref);
+	refcount_release(&pr->pr_ref);
 #endif
 }
 


More information about the dev-commits-src-main mailing list