The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=ee9b37ae5c115c41835119bb5c9d2e14c83abd65
commit ee9b37ae5c115c41835119bb5c9d2e14c83abd65 Author: Mateusz Guzik <[email protected]> AuthorDate: 2021-02-21 19:57:21 +0000 Commit: Mateusz Guzik <[email protected]> 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 } _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
