diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/pmap.c | 4 | ||||
-rw-r--r-- | procps/smemcap.c | 3 |
2 files changed, 5 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 | ||
diff --git a/procps/smemcap.c b/procps/smemcap.c index f951a5fb6..196c91f54 100644 --- a/procps/smemcap.c +++ b/procps/smemcap.c | |||
@@ -125,5 +125,8 @@ int smemcap_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
125 | } | 125 | } |
126 | } | 126 | } |
127 | 127 | ||
128 | if (ENABLE_FEATURE_CLEAN_UP) | ||
129 | closedir(d); | ||
130 | |||
128 | return EXIT_SUCCESS; | 131 | return EXIT_SUCCESS; |
129 | } | 132 | } |