summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/for.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/for.c')
-rw-r--r--usr.bin/make/for.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/for.c b/usr.bin/make/for.c
index 9051ae7..e2df76c 100644
--- a/usr.bin/make/for.c
+++ b/usr.bin/make/for.c
@@ -72,7 +72,7 @@ __FBSDID("$FreeBSD$");
static int forLevel = 0; /* Nesting level */
static char *forVar; /* Iteration variable */
static Buffer forBuf; /* Commands in loop */
-static Lst forLst; /* List of items */
+static Lst *forLst; /* List of items */
/*
* State of a for loop.
@@ -80,7 +80,7 @@ static Lst forLst; /* List of items */
typedef struct _For {
Buffer buf; /* Unexpanded buffer */
char* var; /* Index name */
- Lst lst; /* List of variables */
+ Lst *lst; /* List of variables */
int lineno; /* Line # */
} For;
OpenPOWER on IntegriCloud