diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-03-26 13:40:06 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-03-26 13:40:06 +0000 |
commit | add89e71d9c5838dfefc6777e4811780334de97d (patch) | |
tree | 75fa848c0df1e6d346a74623681e86d6d30f1ee2 /sys/uvm/uvm_anon.c | |
parent | b5e05aaf3d967427bc39a710364710a4d5e75add (diff) |
Remove parenthesis around return value to reduce the diff with NetBSD.
No functional change.
ok mlarkin@
Diffstat (limited to 'sys/uvm/uvm_anon.c')
-rw-r--r-- | sys/uvm/uvm_anon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_anon.c b/sys/uvm/uvm_anon.c index e07838ea57d..496df417e07 100644 --- a/sys/uvm/uvm_anon.c +++ b/sys/uvm/uvm_anon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_anon.c,v 1.53 2021/03/20 10:24:21 mpi Exp $ */ +/* $OpenBSD: uvm_anon.c,v 1.54 2021/03/26 13:40:05 mpi Exp $ */ /* $NetBSD: uvm_anon.c,v 1.10 2000/11/25 06:27:59 chs Exp $ */ /* @@ -67,7 +67,7 @@ uvm_analloc(void) anon->an_page = NULL; anon->an_swslot = 0; } - return(anon); + return anon; } /* |