Commit 6861b44a authored by Michael Ellerman's avatar Michael Ellerman Committed by Benjamin Herrenschmidt

selftests/powerpc: Fix parse_proc_maps()

start and end should be unsigned long.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent cbfd7dab
...@@ -177,8 +177,8 @@ struct addr_range libc, vdso; ...@@ -177,8 +177,8 @@ struct addr_range libc, vdso;
int parse_proc_maps(void) int parse_proc_maps(void)
{ {
unsigned long start, end;
char execute, name[128]; char execute, name[128];
uint64_t start, end;
FILE *f; FILE *f;
int rc; int rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment