diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-05-03 22:49:44 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-05-03 22:49:44 +0000 |
commit | 43419cbaead55a97668489848bc5e562f5e85bf7 (patch) | |
tree | ad7d9a3188bbe8c3a70d41138e20628aa32eec68 /sys/uvm | |
parent | d80bf4667612fc0e31782d418d0c426f1db79461 (diff) |
Fix whitespace fail in previous commit
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_glue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/uvm/uvm_glue.c b/sys/uvm/uvm_glue.c index 324794c09e3..5865c46fa35 100644 --- a/sys/uvm/uvm_glue.c +++ b/sys/uvm/uvm_glue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_glue.c,v 1.63 2014/05/03 22:44:36 guenther Exp $ */ +/* $OpenBSD: uvm_glue.c,v 1.64 2014/05/03 22:49:43 guenther Exp $ */ /* $NetBSD: uvm_glue.c,v 1.44 2001/02/06 19:54:44 eeh Exp $ */ /* @@ -305,14 +305,14 @@ uvm_uarea_alloc(void) USPACE_ALIGN, UVM_KMF_ZERO, no_constraint.ucr_low, no_constraint.ucr_high, 0, 0, USPACE/PAGE_SIZE); - + #ifdef PMAP_UAREA /* Tell the pmap this is a u-area mapping */ if (uaddr != 0) PMAP_UAREA(uaddr); #endif - return (uaddr); + return (uaddr); } /* |