Skip to content
Snippets Groups Projects
Commit aae0ad7a authored by Jianpeng Ma's avatar Jianpeng Ma Committed by Linus Torvalds
Browse files

mm/kmemleak.c: use %u to print ->checksum

parent 688eb988
No related branches found
No related tags found
No related merge requests found
......@@ -387,7 +387,7 @@ static void dump_object_info(struct kmemleak_object *object)
pr_notice(" min_count = %d\n", object->min_count);
pr_notice(" count = %d\n", object->count);
pr_notice(" flags = 0x%lx\n", object->flags);
pr_notice(" checksum = %d\n", object->checksum);
pr_notice(" checksum = %u\n", object->checksum);
pr_notice(" backtrace:\n");
print_stack_trace(&trace, 4);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment