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>
This commit is contained in:
parent
8a9343fa24
commit
43dee336c9
1 changed files with 2 additions and 1 deletions
|
@ -487,7 +487,8 @@ int dlm_convert_lock_handler(struct o2net_msg *msg, u32 len, void *data)
|
|||
mlog(ML_ERROR, "There is something here "
|
||||
"for node %u, lock->ml.cookie=%llu, "
|
||||
"cnv->cookie=%llu\n", cnv->node_idx,
|
||||
lock->ml.cookie, cnv->cookie);
|
||||
(unsigned long long)lock->ml.cookie,
|
||||
(unsigned long long)cnv->cookie);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue