git: 5f452214f276 - main - vm_map.c: fix syntax
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 18 Aug 2023 13:37:21 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=5f452214f2761b422b1a385865fe4c20265b09fe
commit 5f452214f2761b422b1a385865fe4c20265b09fe
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-08-18 13:35:25 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-08-18 13:37:16 +0000
vm_map.c: fix syntax
Fixes: c718009884b3d65528deaff24712cbf98e3be656
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
---
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 f609d1fd68d7..97b96a46e4b2 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) {