Commit 79c83ea1 authored by alex chen's avatar alex chen Committed by Linus Torvalds

ocfs2: fix snprintf format specifier in dlmdebug.c

Use snprintf format specifier "%lu" instead of "%ld" for argument of type
'unsigned long'.
Signed-off-by: default avatarAlex Chen <alex.chen@huawei.com>
Reviewed-by: default avatarJoseph Qi <joseph.qi@huawei.com>
Reviewed-by: default avatarMark Fasheh <mfasheh@suse.de>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 41d6247f
...@@ -406,7 +406,7 @@ static int debug_purgelist_print(struct dlm_ctxt *dlm, char *buf, int len) ...@@ -406,7 +406,7 @@ static int debug_purgelist_print(struct dlm_ctxt *dlm, char *buf, int len)
} }
spin_unlock(&dlm->spinlock); spin_unlock(&dlm->spinlock);
out += snprintf(buf + out, len - out, "Total on list: %ld\n", total); out += snprintf(buf + out, len - out, "Total on list: %lu\n", total);
return out; return out;
} }
...@@ -464,7 +464,7 @@ static int debug_mle_print(struct dlm_ctxt *dlm, char *buf, int len) ...@@ -464,7 +464,7 @@ static int debug_mle_print(struct dlm_ctxt *dlm, char *buf, int len)
spin_unlock(&dlm->master_lock); spin_unlock(&dlm->master_lock);
out += snprintf(buf + out, len - out, out += snprintf(buf + out, len - out,
"Total: %ld, Longest: %ld\n", total, longest); "Total: %lu, Longest: %lu\n", total, longest);
return out; return out;
} }
......
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