Commit 43dee336 authored by Mark Fasheh's avatar Mark Fasheh

ocfs2: fix compiler warnings in dlm_convert_lock_handler()

We need to cast to unsigned long long.
Signed-off-by: default avatarMark Fasheh <mark.fasheh@oracle.com>
parent 8a9343fa
......@@ -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;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment