From owner-freebsd-current Tue Mar 19 12:23:48 2002 Delivered-To: freebsd-current@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 165B737B6B8; Tue, 19 Mar 2002 12:19:01 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id AECDAAE22C; Tue, 19 Mar 2002 12:19:01 -0800 (PST) Date: Tue, 19 Mar 2002 12:19:01 -0800 From: Alfred Perlstein To: current@freebsd.org Cc: phk@freebsd.org Subject: fla LINT breakage. Message-ID: <20020319201901.GJ455@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.27i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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