diff options
| author | christos <christos@NetBSD.org> | 2014-10-14 01:04:39 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2014-10-14 01:04:39 +0000 |
| commit | ca8266dcfdd9a69b5aabcb6d122fd03e457e9d9f (patch) | |
| tree | 552d2b353a6939c3b29decedcb4a8c1563373e88 /sys/dev | |
| parent | 7539adcad0ce365fa4e02253f8e1b209070793a4 (diff) | |
PR/49281: John D. Baker: fix debugging format
XXX: pullup 7
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ppbus/ppbus_base.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ppbus/ppbus_base.c b/sys/dev/ppbus/ppbus_base.c index 0cabd46722a..815e01540f6 100644 --- a/sys/dev/ppbus/ppbus_base.c +++ b/sys/dev/ppbus/ppbus_base.c @@ -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.20 2014/10/14 01:04:39 christos 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.20 2014/10/14 01:04:39 christos Exp $"); #include "opt_ppbus_1284.h" #include "opt_ppbus.h" @@ -537,7 +537,7 @@ ppbus_pnp_detect(device_t dev) } #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"); |
