ANDROID: fix a warning due to type mismatch in pr_warn

For pr_warn format string to correctly reflect the types of the arguments.

Fixes: 0249af9c0e ("ANDROID: mm: page_alloc: skip dump pages for freeable page")
Bug: 188908895
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Change-Id: Id218aafa9fa4148f036f35ca190cf65bfee2160e
This commit is contained in:
Suren Baghdasaryan
2021-05-25 10:43:46 -07:00
parent 2f056f11e8
commit 4b280e66ee

View File

@@ -8559,7 +8559,7 @@ static void alloc_contig_dump_pages(struct list_head *page_list)
} }
dump_page(page, "migration failure"); dump_page(page, "migration failure");
} }
pr_warn("total dump_pages %u skipping %u\n", nr_pages, nr_skip); pr_warn("total dump_pages %lu skipping %lu\n", nr_pages, nr_skip);
} }
} }
#else #else