summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_radix.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_radix.h')
-rw-r--r--sys/vm/vm_radix.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_radix.h b/sys/vm/vm_radix.h
index 1c7c7c9..5c6dac3 100644
--- a/sys/vm/vm_radix.h
+++ b/sys/vm/vm_radix.h
@@ -54,12 +54,12 @@ void vm_radix_remove(struct vm_radix *, vm_pindex_t);
static inline void *
vm_radix_lookup_ge(struct vm_radix *rtree, vm_pindex_t index)
{
- void *val;
+ void *val;
u_int dummy;
- if (vm_radix_lookupn(rtree, index, 0, &val, 1, &index, &dummy))
- return (val);
- return (NULL);
+ if (vm_radix_lookupn(rtree, index, 0, &val, 1, &index, &dummy))
+ return (val);
+ return (NULL);
}
#endif /* _KERNEL */
OpenPOWER on IntegriCloud