diff options
author | bde <bde@FreeBSD.org> | 2002-05-25 11:18:03 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-05-25 11:18:03 +0000 |
commit | 9b3a249b6b3fa995e74685469323abc82a4fe709 (patch) | |
tree | fbf20da1fb26fed2cfde064298c4e981ca36afcf /sys/i4b | |
parent | 4013a9be11403088c964fa7da480002933c4b43c (diff) | |
download | FreeBSD-src-9b3a249b6b3fa995e74685469323abc82a4fe709.zip FreeBSD-src-9b3a249b6b3fa995e74685469323abc82a4fe709.tar.gz |
Fixed printf format errors which apparently crept in while -Wformat was
disabled for gcc-3.
Diffstat (limited to 'sys/i4b')
-rw-r--r-- | sys/i4b/capi/iavc/iavc_isa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i4b/capi/iavc/iavc_isa.c b/sys/i4b/capi/iavc/iavc_isa.c index 48ad6e4..b1d53be 100644 --- a/sys/i4b/capi/iavc/iavc_isa.c +++ b/sys/i4b/capi/iavc/iavc_isa.c @@ -159,7 +159,8 @@ iavc_isa_probe(device_t dev) if(ret) { - printf("iavc%d: no card ? b1_detect returns 0x02x\n", sc->sc_unit, ret); + printf("iavc%d: no card ? b1_detect returns %0x02x\n", + sc->sc_unit, ret); return(ENXIO); } |