diff options
-rw-r--r-- | procps/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/pmap.c b/procps/pmap.c index cfa94ed82..bb5f9e7c2 100644 --- a/procps/pmap.c +++ b/procps/pmap.c | |||
@@ -44,7 +44,7 @@ enum { | |||
44 | 44 | ||
45 | static void print_smaprec(struct smaprec *currec, void *data) | 45 | static void print_smaprec(struct smaprec *currec, void *data) |
46 | { | 46 | { |
47 | unsigned opt = (unsigned)data; | 47 | unsigned opt = (uintptr_t)data; |
48 | 48 | ||
49 | printf("%0" AFMT "lx ", currec->smap_start); | 49 | printf("%0" AFMT "lx ", currec->smap_start); |
50 | 50 | ||
@@ -74,7 +74,7 @@ static int procps_get_maps(pid_t pid, unsigned opt) | |||
74 | 74 | ||
75 | memset(&total, 0, sizeof(total)); | 75 | memset(&total, 0, sizeof(total)); |
76 | 76 | ||
77 | ret = procps_read_smaps(pid, &total, print_smaprec, (void*)opt); | 77 | ret = procps_read_smaps(pid, &total, print_smaprec, (void*)(uintptr_t)opt); |
78 | if (ret) | 78 | if (ret) |
79 | return ret; | 79 | return ret; |
80 | 80 | ||