Skip to content

Commit bcd602a

Browse files
motiejusgregkh
authored andcommitted
tools/mm: fix compile error
[ Upstream commit a393267 ] 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]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 4b9fb3a commit bcd602a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mm/page-types.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ static void show_page(unsigned long voffset, unsigned long offset,
421421
if (opt_file)
422422
printf("%lx\t", voffset);
423423
if (opt_list_cgroup)
424-
printf("@%" PRIu64 "\t", cgroup)
424+
printf("@%" PRIu64 "\t", cgroup);
425425
if (opt_list_mapcnt)
426426
printf("%" PRIu64 "\t", mapcnt);
427427

0 commit comments

Comments
 (0)