Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/oea Can't pass a void.



details:   https://anonhg.NetBSD.org/src/rev/6dab25a07a0a
branches:  trunk
changeset: 762741:6dab25a07a0a
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Feb 26 22:33:45 2011 +0000

description:
Can't pass a void.

diffstat:

 sys/arch/powerpc/oea/pmap_kernel.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6e4ac7a8c0f0 -r 6dab25a07a0a sys/arch/powerpc/oea/pmap_kernel.c
--- a/sys/arch/powerpc/oea/pmap_kernel.c        Sat Feb 26 20:38:49 2011 +0000
+++ b/sys/arch/powerpc/oea/pmap_kernel.c        Sat Feb 26 22:33:45 2011 +0000
@@ -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
 



Home | Main Index | Thread Index | Old Index