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>
This commit is contained in:
Michael Ellerman 2014-07-23 17:31:32 +10:00 committed by Benjamin Herrenschmidt
parent cbfd7dab2d
commit 6861b44aa0
1 changed files with 1 additions and 1 deletions

View File

@ -177,8 +177,8 @@ struct addr_range libc, vdso;
int parse_proc_maps(void)
{
unsigned long start, end;
char execute, name[128];
uint64_t start, end;
FILE *f;
int rc;