mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 16:14:13 +08:00
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
@ -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 New Issue
Block a user