Skip to content

Commit a393267

Browse files
motiejusakpm00
authored andcommitted
tools/mm: fix compile error
Add a missing semicolon. Link: https://lkml.kernel.org/r/[email protected] Fixes: ece5897 ("tools/mm: -Werror fixes in page-types/slabinfo") Signed-off-by: Motiejus JakÅ`tys <[email protected]> Closes: NixOS/nixpkgs#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]>
1 parent 0ec8bc9 commit a393267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mm/page-types.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ static void show_page(unsigned long voffset, unsigned long offset,
420420
if (opt_file)
421421
printf("%lx\t", voffset);
422422
if (opt_list_cgroup)
423-
printf("@%" PRIu64 "\t", cgroup)
423+
printf("@%" PRIu64 "\t", cgroup);
424424
if (opt_list_mapcnt)
425425
printf("%" PRIu64 "\t", mapcnt);
426426

0 commit comments

Comments
 (0)