Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hp700/hp700 Add missing parenthesis in debug code. ...



details:   https://anonhg.NetBSD.org/src/rev/366cb88027e9
branches:  trunk
changeset: 779007:366cb88027e9
user:      dholland <dholland%NetBSD.org@localhost>
date:      Wed Apr 25 07:58:43 2012 +0000

description:
Add missing parenthesis in debug code. PR 46370 from Henning Petersen.

diffstat:

 sys/arch/hp700/hp700/machdep.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r bf97b18127d2 -r 366cb88027e9 sys/arch/hp700/hp700/machdep.c
--- a/sys/arch/hp700/hp700/machdep.c    Wed Apr 25 07:57:15 2012 +0000
+++ b/sys/arch/hp700/hp700/machdep.c    Wed Apr 25 07:58:43 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.110 2012/04/05 20:12:09 skrll Exp $      */
+/*     $NetBSD: machdep.c,v 1.111 2012/04/25 07:58:43 dholland Exp $   */
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.110 2012/04/05 20:12:09 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.111 2012/04/25 07:58:43 dholland Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -1059,7 +1059,7 @@
        error = pdcproc_btlb_insert(sp, va, pa, sz, prot, i);
        if (error < 0) {
 #ifdef BTLBDEBUG
-               DPRINTF(("WARNING: BTLB insert failed (%d)\n", error);
+               DPRINTF(("WARNING: BTLB insert failed (%d)\n", error));
 #endif
        }
        return error;



Home | Main Index | Thread Index | Old Index