summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2016-09-16 02:50:55 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2016-09-16 02:50:55 +0000
commitf3fe72a3168d0e5ddb260fbdb72734db1b8e107c (patch)
treef68aeb70f0c04b2bc0abac14dfd7f148b556dff6 /sys
parent170a7a2cfe2d8130be63834b904030972c11564d (diff)
fix spelling of RBT_NEXT in a comment
Diffstat (limited to 'sys')
-rw-r--r--sys/uvm/uvm_addr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_addr.c b/sys/uvm/uvm_addr.c
index 8303ce206e0..7913e615f45 100644
--- a/sys/uvm/uvm_addr.c
+++ b/sys/uvm/uvm_addr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_addr.c,v 1.21 2016/09/16 01:51:40 dlg Exp $ */
+/* $OpenBSD: uvm_addr.c,v 1.22 2016/09/16 02:50:54 dlg Exp $ */
/*
* Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl>
@@ -640,7 +640,7 @@ uaddr_rnd_select(struct vm_map *map, struct uvm_addr_state *uaddr,
return 0;
}
- /* RB_NEXT, but skip subtrees that cannot possible fit. */
+ /* RBT_NEXT, but skip subtrees that cannot possible fit. */
next = RBT_RIGHT(uvm_map_addr, entry);
if (next != NULL &&
next->fspace_augment >= before_gap + after_gap + sz) {