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 Missing semicolon.



details:   https://anonhg.NetBSD.org/src/rev/ccd78256056b
branches:  trunk
changeset: 762750:ccd78256056b
user:      rjs <rjs%NetBSD.org@localhost>
date:      Sun Feb 27 09:01:56 2011 +0000

description:
Missing semicolon.

diffstat:

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

diffs (27 lines):

diff -r eb3e4ed34753 -r ccd78256056b sys/arch/powerpc/oea/pmap_kernel.c
--- a/sys/arch/powerpc/oea/pmap_kernel.c        Sun Feb 27 06:25:07 2011 +0000
+++ b/sys/arch/powerpc/oea/pmap_kernel.c        Sun Feb 27 09:01:56 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_kernel.c,v 1.6 2011/02/26 22:33:45 matt Exp $     */
+/*     $NetBSD: pmap_kernel.c,v 1.7 2011/02/27 09:01:56 rjs 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.6 2011/02/26 22:33:45 matt Exp $");
+__KERNEL_RCSID(1, "$NetBSD: pmap_kernel.c,v 1.7 2011/02/27 09:01:56 rjs Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pmap.h"
@@ -286,7 +286,7 @@
 void
 pmap_pvo_verify(void)
 {
-       (*pmapops->pmapop_pvo_verify)()
+       (*pmapops->pmapop_pvo_verify)();
 }
 #endif
 



Home | Main Index | Thread Index | Old Index