diff options
author | Alexander Beregalov <a.beregalov@gmail.com> | 2008-10-29 17:13:08 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-10-29 17:13:08 -0400 |
commit | 8f72fbdf0d92e6127583cc548bf043c60cd4720f (patch) | |
tree | 1e640222c04efb9cd0e56fccee5a23084d006c38 /fs/ext4/balloc.c | |
parent | fe0bdec68b77020281dc814805edfe594ae89e0f (diff) | |
download | linux-3.10-8f72fbdf0d92e6127583cc548bf043c60cd4720f.tar.gz linux-3.10-8f72fbdf0d92e6127583cc548bf043c60cd4720f.tar.bz2 linux-3.10-8f72fbdf0d92e6127583cc548bf043c60cd4720f.zip |
ext4: fix printk format warning
fs/ext4/balloc.c:607: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'
fs/ext4/inode.c:1822: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'
fs/ext4/inode.c:1824: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/balloc.c')
-rw-r--r-- | fs/ext4/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 38b3acf5683..152c390f3c3 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -614,7 +614,7 @@ int ext4_has_free_blocks(struct ext4_sb_info *sbi, s64 nblocks) if (dirty_blocks < 0) { printk(KERN_CRIT "Dirty block accounting " "went wrong %lld\n", - dirty_blocks); + (long long)dirty_blocks); } } /* Check whether we have space after |