aboutsummaryrefslogtreecommitdiff
path: root/toys/other/pmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/pmap.c')
-rw-r--r--toys/other/pmap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/toys/other/pmap.c b/toys/other/pmap.c
index 1cc04220..9ef1ade9 100644
--- a/toys/other/pmap.c
+++ b/toys/other/pmap.c
@@ -24,8 +24,10 @@ config PMAP
void pmap_main(void)
{
- while (*toys.optargs) {
- pid_t pid = atolx(*toys.optargs++);
+ char **optargs;
+
+ for (optargs = toys.optargs; *optargs; optargs++) {
+ pid_t pid = atolx(*optargs);
FILE *fp;
char *line, *oldline = 0, *name = 0,
*k = (toys.optflags & FLAG_x) ? "" : "K";