Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sun2/dev Fix missing parenthesis in #ifdef notyet b...



details:   https://anonhg.NetBSD.org/src/rev/f47d2be5d83d
branches:  trunk
changeset: 750353:f47d2be5d83d
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Dec 27 08:41:50 2009 +0000

description:
Fix missing parenthesis in #ifdef notyet block. PR port-sun2/42524

diffstat:

 sys/arch/sun2/dev/consinit.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d147f033e10b -r f47d2be5d83d sys/arch/sun2/dev/consinit.c
--- a/sys/arch/sun2/dev/consinit.c      Sun Dec 27 08:31:10 2009 +0000
+++ b/sys/arch/sun2/dev/consinit.c      Sun Dec 27 08:41:50 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: consinit.c,v 1.6 2005/12/11 12:19:16 christos Exp $    */
+/*     $NetBSD: consinit.c,v 1.7 2009/12/27 08:41:50 tsutsui Exp $     */
 
 /*-
  * Copyright (c) 2001 Matthew Fredette
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.6 2005/12/11 12:19:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.7 2009/12/27 08:41:50 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -271,7 +271,7 @@
                DBPRINT(("stdout package = %x\r\n", prom_stdout_node));
                DBPRINT(("buffer @ %p\r\n", buffer));
        
-               if (prom_stdin_node && prom_node_has_property(prom_stdin_node, "keyboard") {
+               if (prom_stdin_node && prom_node_has_property(prom_stdin_node, "keyboard")) {
 #if NKBD == 0          
                        printf("cninit: kdb/display not configured\n");
 #endif



Home | Main Index | Thread Index | Old Index