Skip to content

Commit

Permalink
ocfs2: printf fixes
Browse files Browse the repository at this point in the history
Explicitely convert loff_t to long long in printf. Just for sure...

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
  • Loading branch information
Jan Kara authored and Mark Fasheh committed Jan 25, 2008
1 parent 32c3c0e commit 634bf74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ocfs2/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ int ocfs2_lock_allocators(struct inode *inode, struct ocfs2_dinode *di,

mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
"clusters_to_add = %u, extents_to_split = %u\n",
(unsigned long long)OCFS2_I(inode)->ip_blkno, i_size_read(inode),
(unsigned long long)OCFS2_I(inode)->ip_blkno, (long long)i_size_read(inode),
le32_to_cpu(di->i_clusters), clusters_to_add, extents_to_split);

num_free_extents = ocfs2_num_free_extents(osb, inode, di);
Expand Down Expand Up @@ -807,7 +807,7 @@ static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
le32_to_cpu(fe->i_clusters),
(unsigned long long)le64_to_cpu(fe->i_size));
mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
OCFS2_I(inode)->ip_clusters, i_size_read(inode));
OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));

leave:
if (handle) {
Expand Down

0 comments on commit 634bf74

Please sign in to comment.