From add89e71d9c5838dfefc6777e4811780334de97d Mon Sep 17 00:00:00 2001 From: Martin Pieuchot Date: Fri, 26 Mar 2021 13:40:06 +0000 Subject: Remove parenthesis around return value to reduce the diff with NetBSD. No functional change. ok mlarkin@ --- sys/uvm/uvm_page.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/uvm/uvm_page.h') diff --git a/sys/uvm/uvm_page.h b/sys/uvm/uvm_page.h index 6cf40f30e2b..e29a872bf39 100644 --- a/sys/uvm/uvm_page.h +++ b/sys/uvm/uvm_page.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_page.h,v 1.65 2020/09/22 14:31:08 mpi Exp $ */ +/* $OpenBSD: uvm_page.h,v 1.66 2021/03/26 13:40:05 mpi Exp $ */ /* $NetBSD: uvm_page.h,v 1.19 2000/12/28 08:24:55 chs Exp $ */ /* @@ -256,9 +256,9 @@ vm_physseg_find(paddr_t pframe, int *offp) if (pframe >= vm_physmem[0].start && pframe < vm_physmem[0].end) { if (offp) *offp = pframe - vm_physmem[0].start; - return(0); + return 0; } - return(-1); + return -1; } /* -- cgit v1.2.3