Module Name:    src
Committed By:   rin
Date:           Wed Sep  8 12:00:50 UTC 2021

Modified Files:
        src/sys/arch/sh3/sh3: pmap.c

Log Message:
Hmm, remove one more parentheses from return.


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 src/sys/arch/sh3/sh3/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/sh3/sh3/pmap.c
diff -u src/sys/arch/sh3/sh3/pmap.c:1.93 src/sys/arch/sh3/sh3/pmap.c:1.94
--- src/sys/arch/sh3/sh3/pmap.c:1.93	Wed Sep  8 11:59:43 2021
+++ src/sys/arch/sh3/sh3/pmap.c	Wed Sep  8 12:00:50 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.93 2021/09/08 11:59:43 rin Exp $	*/
+/*	$NetBSD: pmap.c,v 1.94 2021/09/08 12:00:50 rin Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.93 2021/09/08 11:59:43 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.94 2021/09/08 12:00:50 rin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -814,7 +814,7 @@ pmap_clear_reference(struct vm_page *pg)
 	int s;
 
 	if ((pvh->pvh_flags & PVH_REFERENCED) == 0)
-		return (false);
+		return false;
 
 	pvh->pvh_flags &= ~PVH_REFERENCED;
 

Reply via email to