Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/powerpc: Fix parse_proc_maps()

start and end should be unsigned long.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Michael Ellerman and committed by
Benjamin Herrenschmidt
6861b44a cbfd7dab

+1 -1
+1 -1
tools/testing/selftests/powerpc/pmu/lib.c
··· 177 177 178 178 int parse_proc_maps(void) 179 179 { 180 + unsigned long start, end; 180 181 char execute, name[128]; 181 - uint64_t start, end; 182 182 FILE *f; 183 183 int rc; 184 184