Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Aug 2013 18:39:36 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254286 - head/sys/fs/ext2fs
Message-ID:  <201308131839.r7DIdaLD037277@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Tue Aug 13 18:39:36 2013
New Revision: 254286
URL: http://svnweb.freebsd.org/changeset/base/254286

Log:
  ext2fs: update format specifiers for ext4 type.
  
  Reported by:	Sam Fourman Jr.
  MFC after:	3 weeks

Modified:
  head/sys/fs/ext2fs/ext2_subr.c

Modified: head/sys/fs/ext2fs/ext2_subr.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_subr.c	Tue Aug 13 18:14:53 2013	(r254285)
+++ head/sys/fs/ext2fs/ext2_subr.c	Tue Aug 13 18:39:36 2013	(r254286)
@@ -150,7 +150,7 @@ ext2_checkoverlap(struct buf *bp, struct
 		    ep->b_blkno + btodb(ep->b_bcount) <= start)
 			continue;
 		vprint("Disk overlap", vp);
-		(void)printf("\tstart %d, end %d overlap start %lld, end %ld\n",
+		(void)printf("\tstart %ld, end %ld overlap start %lld, end %ld\n",
 			start, last, (long long)ep->b_blkno,
 			(long)(ep->b_blkno + btodb(ep->b_bcount) - 1));
 		panic("Disk buffer overlap");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308131839.r7DIdaLD037277>