aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMotiejus JakÅ`tys <[email protected]>2024-11-12 19:16:55 +0200
committerAndrew Morton <[email protected]>2024-11-14 22:43:48 -0800
commita39326767c55c00c7c313333404cbcb502cce8fe (patch)
treed3856f09d078d5423be4dd3a618c9426b4fe8d38
parent0ec8bc9e880eb576dc4492e8e0c7153ed0a71031 (diff)
tools/mm: fix compile error
Add a missing semicolon. Link: https://lkml.kernel.org/r/[email protected] Fixes: ece5897e5a10 ("tools/mm: -Werror fixes in page-types/slabinfo") Signed-off-by: Motiejus JakÅ`tys <[email protected]> Closes: https://github.com/NixOS/nixpkgs/issues/355369 Reviewed-by: SeongJae Park <[email protected]> Reviewed-by: Vishal Moola (Oracle) <[email protected]> Acked-by: Oleksandr Natalenko <[email protected]> Cc: Wladislav Wiebe <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r--tools/mm/page-types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mm/page-types.c b/tools/mm/page-types.c
index 6eb17cc1a06c..bcac7ebfb51f 100644
--- a/tools/mm/page-types.c
+++ b/tools/mm/page-types.c
@@ -420,7 +420,7 @@ static void show_page(unsigned long voffset, unsigned long offset,
if (opt_file)
printf("%lx\t", voffset);
if (opt_list_cgroup)
- printf("@%" PRIu64 "\t", cgroup)
+ printf("@%" PRIu64 "\t", cgroup);
if (opt_list_mapcnt)
printf("%" PRIu64 "\t", mapcnt);