Module Name:    src
Committed By:   matt
Date:           Sat Feb 26 22:33:46 UTC 2011

Modified Files:
        src/sys/arch/powerpc/oea: pmap_kernel.c

Log Message:
Can't pass a void.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/powerpc/oea/pmap_kernel.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/powerpc/oea/pmap_kernel.c
diff -u src/sys/arch/powerpc/oea/pmap_kernel.c:1.5 src/sys/arch/powerpc/oea/pmap_kernel.c:1.6
--- src/sys/arch/powerpc/oea/pmap_kernel.c:1.5	Fri Feb 18 21:08:18 2011
+++ src/sys/arch/powerpc/oea/pmap_kernel.c	Sat Feb 26 22:33:45 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap_kernel.c,v 1.5 2011/02/18 21:08:18 matt Exp $	*/
+/*	$NetBSD: pmap_kernel.c,v 1.6 2011/02/26 22:33:45 matt Exp $	*/
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -30,7 +30,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: pmap_kernel.c,v 1.5 2011/02/18 21:08:18 matt Exp $");
+__KERNEL_RCSID(1, "$NetBSD: pmap_kernel.c,v 1.6 2011/02/26 22:33:45 matt Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pmap.h"
@@ -286,7 +286,7 @@
 void
 pmap_pvo_verify(void)
 {
-	(*pmapops->pmapop_pvo_verify)(void)
+	(*pmapops->pmapop_pvo_verify)()
 }
 #endif
 

Reply via email to