diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2005-02-28 17:05:26 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2005-02-28 17:05:26 +0000 |
| commit | 09fdd614d42a5c5eecfa5a0c9b079735ef6a571f (patch) | |
| tree | 34d84a09affdb94b7992b2e6a8bae2e032a772a4 | |
| parent | 53365f4b439d96e8e4b51a2641f657617f8d9bda (diff) | |
Notes
| -rw-r--r-- | usr.bin/make/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 6e50b159f4ad..44b4f3af665f 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -909,7 +909,7 @@ main(int argc, char **argv) sprintf(v, "${%s}", name); buf = Var_Subst(NULL, v, VAR_GLOBAL, FALSE); - value = Buf_GetAll(buf, FALSE); + value = Buf_GetAll(buf, NULL); printf("%s\n", value); Buf_Destroy(buf, TRUE); |
