summaryrefslogtreecommitdiffstats
path: root/sys/i4b/capi/iavc
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-05-25 11:18:03 +0000
committerbde <bde@FreeBSD.org>2002-05-25 11:18:03 +0000
commit9b3a249b6b3fa995e74685469323abc82a4fe709 (patch)
treefbf20da1fb26fed2cfde064298c4e981ca36afcf /sys/i4b/capi/iavc
parent4013a9be11403088c964fa7da480002933c4b43c (diff)
downloadFreeBSD-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/capi/iavc')
-rw-r--r--sys/i4b/capi/iavc/iavc_isa.c3
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);
}
OpenPOWER on IntegriCloud