Skip to content

Commit

Permalink
ocfs2: fix compiler warnings in dlm_convert_lock_handler()
Browse files Browse the repository at this point in the history
We need to cast to unsigned long long.

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
  • Loading branch information
Mark Fasheh committed Jun 26, 2006
1 parent 8a9343f commit 43dee33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fs/ocfs2/dlm/dlmconvert.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 43dee33

Please sign in to comment.