diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-05 21:14:59 +0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-05 21:14:59 +0400 |
commit | fd4de2d41a9de2d949b0850d637aa84616f87ab8 (patch) | |
tree | 98bcb0cf0c6768f9a882e797fea14ea8de3bb344 /fs/gfs2/log.c | |
parent | 3864caea2ed2b43bfc92e5cfbe001abe3f002a06 (diff) | |
download | linux-fd4de2d41a9de2d949b0850d637aa84616f87ab8.tar.xz |
[GFS2] Add cast for printk
Cast a uint64_t to unsigned long long for a printk.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/log.c')
-rw-r--r-- | fs/gfs2/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c index 483d4fa987f6..1596e9436c42 100644 --- a/fs/gfs2/log.c +++ b/fs/gfs2/log.c @@ -214,7 +214,7 @@ static uint64_t log_bmap(struct gfs2_sbd *sdp, unsigned int lbn) error = gfs2_block_map(sdp->sd_jdesc->jd_inode, lbn, &new, &dbn, &bdy); if (!(!error && dbn)) { - printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error, dbn, lbn); + printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error, (unsigned long long)dbn, lbn); } gfs2_assert_withdraw(sdp, !error && dbn); |