From 632d4411d92c90ad6847a038ccd7e3b41866b750 Mon Sep 17 00:00:00 2001 From: adilger Date: Thu, 9 Apr 2009 03:25:05 +0000 Subject: [PATCH] Branch b_release_1_6_7 Quiet compiler warning in debug message for 32-bit arches. b=18810 --- lustre/lvfs/fsfilt_ext3.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lustre/lvfs/fsfilt_ext3.c b/lustre/lvfs/fsfilt_ext3.c index 97c1da9..79e31dd 100644 --- a/lustre/lvfs/fsfilt_ext3.c +++ b/lustre/lvfs/fsfilt_ext3.c @@ -504,8 +504,9 @@ static int fsfilt_ext3_setattr(struct dentry *dentry, void *handle, int rc = 0; LASSERTF(!(iattr->ia_valid & ATTR_SIZE) || !S_ISDIR(inode->i_mode), - "changing i_size on directory #%lu (%p) new %lu old %lu\n", - inode->i_ino, inode, iattr->ia_size, i_size_read(inode)); + "changing i_size on directory #%llu (%p) new %llu old %llu\n", + (long long)inode->i_ino, inode, (long long)iattr->ia_size, + (long long)i_size_read(inode)); /* Avoid marking the inode dirty on the superblock list unnecessarily. * We are already writing the inode to disk as part of this -- 1.8.3.1