From 42e4f1252bb43b7dbc20da4e9b7e3feb45776c30 Mon Sep 17 00:00:00 2001 From: Hartmut Brandt Date: Thu, 10 Feb 2005 14:53:29 +0000 Subject: [PATCH] Let the buffer just use the default size by specifying 0 as the size instead of specifying the default size explicitely. Submitted by: Max Okumoto --- usr.bin/make/var.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/make/var.c b/usr.bin/make/var.c index 13d9f95458a..1ef766fd28b 100644 --- a/usr.bin/make/var.c +++ b/usr.bin/make/var.c @@ -1751,7 +1751,7 @@ Var_Subst(const char *var, char *str, GNode *ctxt, Boolean undefErr) * been reported to prevent a plethora * of messages when recursing */ - buf = Buf_Init(MAKE_BSIZE); + buf = Buf_Init(0); errorReported = FALSE; while (*str) {