Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
			}
		}