aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
authorMark Fasheh <mark.fasheh@oracle.com>2006-05-01 17:56:57 -0400
committerMark Fasheh <mark.fasheh@oracle.com>2006-06-26 17:43:20 -0400
commit43dee336c903fae15783b90983dfdedd2c7ffefc (patch)
tree75a39e684c02811046bbaf9851f7c5695396a9d2 /fs/ocfs2
parent8a9343fa24d8d3fcb189bed2b7afcf4b8a8c1c8d (diff)
ocfs2: fix compiler warnings in dlm_convert_lock_handler()
We need to cast to unsigned long long. Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r--fs/ocfs2/dlm/dlmconvert.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/dlm/dlmconvert.c b/fs/ocfs2/dlm/dlmconvert.c
index b24fa537a767..c764dc8e40a2 100644
--- a/fs/ocfs2/dlm/dlmconvert.c
+++ b/fs/ocfs2/dlm/dlmconvert.c
@@ -487,7 +487,8 @@ int dlm_convert_lock_handler(struct o2net_msg *msg, u32 len, void *data)
487 mlog(ML_ERROR, "There is something here " 487 mlog(ML_ERROR, "There is something here "
488 "for node %u, lock->ml.cookie=%llu, " 488 "for node %u, lock->ml.cookie=%llu, "
489 "cnv->cookie=%llu\n", cnv->node_idx, 489 "cnv->cookie=%llu\n", cnv->node_idx,
490 lock->ml.cookie, cnv->cookie); 490 (unsigned long long)lock->ml.cookie,
491 (unsigned long long)cnv->cookie);
491 break; 492 break;
492 } 493 }
493 } 494 }