Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/bfd3a46c3442
branches:  netbsd-6-1
changeset: 776020:bfd3a46c3442
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Dec 03 13:00:07 2014 +0000

description:
Pull up following revision(s) (requested by snj in ticket #1190):
        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 7de3036b1128 -r bfd3a46c3442 sys/dev/ppbus/ppbus_base.c
--- a/sys/dev/ppbus/ppbus_base.c        Tue Dec 02 22:23:44 2014 +0000
+++ b/sys/dev/ppbus/ppbus_base.c        Wed Dec 03 13:00:07 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ppbus_base.c,v 1.18 2011/05/13 22:35:51 rmind Exp $ */
+/* $NetBSD: ppbus_base.c,v 1.18.24.1 2014/12/03 13:00:07 msaitoh 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.18 2011/05/13 22:35:51 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppbus_base.c,v 1.18.24.1 2014/12/03 13:00:07 msaitoh 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