git: 7a46a70f0e65 - stable/13 - vm_map.c: fix syntax
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 25 Aug 2023 01:08:40 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=7a46a70f0e65f0ce57e0e342409f8470b7f55a5e
commit 7a46a70f0e65f0ce57e0e342409f8470b7f55a5e
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-08-18 13:35:25 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-08-25 01:06:44 +0000
vm_map.c: fix syntax
(cherry picked from commit 5f452214f2761b422b1a385865fe4c20265b09fe)
---
sys/vm/vm_map.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index d046cd34afea..97352ba7b4b7 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -1468,7 +1468,7 @@ vm_map_entry_unlink(vm_map_t map, vm_map_entry_t entry,
if (op == UNLINK_MERGE_NEXT) {
rlist->start = root->start;
MPASS((rlist->eflags & (MAP_ENTRY_STACK_GAP_DN |
- MAP_ENTRY_STACK_GAP_UP) == 0);
+ MAP_ENTRY_STACK_GAP_UP)) == 0);
rlist->offset = root->offset;
}
if (llist != header) {