Source-Changes-HG archive

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

[src/netbsd-7]: src/sys/dev/ppbus Pull up following revision(s) (requested by...



details:   https://anonhg.NetBSD.org/src/rev/3c8f743dae01
branches:  netbsd-7
changeset: 798532:3c8f743dae01
user:      martin <martin%NetBSD.org@localhost>
date:      Mon Nov 10 19:53:50 2014 +0000

description:
Pull up following revision(s) (requested by snj in ticket #206):
        sys/dev/ppbus/ppbus_base.c: revision 1.20
PR/49281: John D. Baker: fix debugging format
XXX: pullup 7

diffstat:

 sys/dev/ppbus/ppbus_base.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 11ece7f4aca6 -r 3c8f743dae01 sys/dev/ppbus/ppbus_base.c
--- a/sys/dev/ppbus/ppbus_base.c        Mon Nov 10 19:51:56 2014 +0000
+++ b/sys/dev/ppbus/ppbus_base.c        Mon Nov 10 19:53:50 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ppbus_base.c,v 1.19 2014/07/13 17:12:23 dholland Exp $ */
+/* $NetBSD: ppbus_base.c,v 1.19.2.1 2014/11/10 19:53:50 martin Exp $ */
 
 /*-
  * Copyright (c) 1997, 1998, 1999 Nicolas Souchu
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ppbus_base.c,v 1.19 2014/07/13 17:12:23 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppbus_base.c,v 1.19.2.1 2014/11/10 19:53:50 martin Exp $");
 
 #include "opt_ppbus_1284.h"
 #include "opt_ppbus.h"
@@ -537,7 +537,7 @@
        }
 
 #ifdef DEBUG_1284
-       printf("%s: <PnP> %d characters: ", device_xname(dev), len);
+       printf("%s: <PnP> %zu characters: ", device_xname(dev), len);
        for (i = 0; i < len; i++)
                printf("%c(0x%x) ", str[i], str[i]);
        printf("\n");



Home | Main Index | Thread Index | Old Index