Date: Tue, 19 Mar 2002 12:19:01 -0800 From: Alfred Perlstein <bright@mu.org> To: current@freebsd.org Cc: phk@freebsd.org Subject: fla LINT breakage. Message-ID: <20020319201901.GJ455@elvis.mu.org>
next in thread | raw e-mail | index | archive | help
Fixes format warnings. Since there was so much... bitching about my
last commit to something contrib/* I'm posting the fix here.
Index: fla.c
===================================================================
RCS file: /home/ncvs/src/sys/contrib/dev/fla/fla.c,v
retrieving revision 1.29
diff -u -r1.29 fla.c
--- fla.c 12 Sep 2001 08:36:59 -0000 1.29
+++ fla.c 19 Mar 2002 20:22:51 -0000
@@ -181,8 +181,9 @@
enum doc2k_work what;
if (fla_debug > 1)
- printf("flastrategy(%p) %s %x, %d, %ld, %p)\n",
- bp, devtoname(bp->bio_dev), bp->bio_flags, bp->bio_blkno,
+ printf("flastrategy(%p) %s %x, %lld, %ld, %p)\n",
+ bp, devtoname(bp->bio_dev), bp->bio_flags,
+ (long long)bp->bio_blkno,
bp->bio_bcount / DEV_BSIZE, bp->bio_data);
sc = bp->bio_dev->si_drv1;
@@ -225,8 +226,9 @@
ENTER();
if (fla_debug > 1 || error) {
- printf("fla%d: %d = rwe(%p, %d, %d, %d, %ld, %p)\n",
- unit, error, bp, unit, what, bp->bio_pblkno,
+ printf("fla%d: %d = rwe(%p, %d, %d, %lld, %ld, %p)\n",
+ unit, error, bp, unit, what,
+ (long long)bp->bio_pblkno,
bp->bio_bcount / DEV_BSIZE, bp->bio_data);
}
if (error) {
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020319201901.GJ455>
