

- xfs printk warning fix (dev_t is ulong on ppc64)


 fs/xfs/linux/xfs_super.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -puN fs/xfs/linux/xfs_super.c~misc9 fs/xfs/linux/xfs_super.c
--- 25/fs/xfs/linux/xfs_super.c~misc9	2003-07-04 03:59:43.000000000 -0700
+++ 25-akpm/fs/xfs/linux/xfs_super.c	2003-07-04 04:00:00.000000000 -0700
@@ -265,8 +265,8 @@ xfs_setsize_buftarg(
 
 	if (set_blocksize(btp->pbr_bdev, sectorsize)) {
 		printk(KERN_WARNING
-			"XFS: Cannot set_blocksize to %u on device 0x%x\n",
-			sectorsize, btp->pbr_dev);
+			"XFS: Cannot set_blocksize to %u on device 0x%lx\n",
+			sectorsize, (unsigned long)btp->pbr_dev);
 	}
 }
 

_
