diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2017-03-29 09:04:35 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2017-03-29 09:04:35 +0000 |
| commit | 2d8bf54a5c424ee4c44b5a3ad080f0641d2f4e80 (patch) | |
| tree | 88cd9fa8420a544cd0ea75f77afe6cd70836b31b /sys/dev/isa | |
| parent | beb228734ad357a3ec150a5d1299e7f4d82daabb (diff) | |
Fix 0x%d and 0x%u.
Diffstat (limited to 'sys/dev/isa')
| -rw-r--r-- | sys/dev/isa/nsclpcsio_isa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/nsclpcsio_isa.c b/sys/dev/isa/nsclpcsio_isa.c index 3cdd5c2ba7e..f3aee7a75b7 100644 --- a/sys/dev/isa/nsclpcsio_isa.c +++ b/sys/dev/isa/nsclpcsio_isa.c @@ -1,4 +1,4 @@ -/* $NetBSD: nsclpcsio_isa.c,v 1.31 2015/04/23 23:23:00 pgoyette Exp $ */ +/* $NetBSD: nsclpcsio_isa.c,v 1.32 2017/03/29 09:04:36 msaitoh Exp $ */ /* * Copyright (c) 2002 @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: nsclpcsio_isa.c,v 1.31 2015/04/23 23:23:00 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nsclpcsio_isa.c,v 1.32 2017/03/29 09:04:36 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -357,7 +357,7 @@ nsclpcsio_isa_attach(device_t parent, device_t self, void *aux) return; } - aprint_normal(": NSC PC87366 rev. 0x%d ", + aprint_normal(": NSC PC87366 rev. %d ", nsread(sc->sc_iot, sc->sc_ioh, SIO_REG_SRID)); /* Configure all supported logical devices */ |
