summaryrefslogtreecommitdiff
path: root/commands.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-09-12 22:15:58 +0000
committerPaul Smith <psmith@gnu.org>2002-09-12 22:15:58 +0000
commitd939d574375c52682a9c9461259691af235b9073 (patch)
treec66f531406bd1e48a85a02fc70e8688d9b4221f3 /commands.c
parentd932c9780b08c7786f19056f84d39b0e3025bf2b (diff)
downloadmake-d939d574375c52682a9c9461259691af235b9073.tar.gz
Fixups for the release. One bug fix, some automake complaint fixes,
and a function return type fix for older systems.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index f6baefcb..84b58de5 100644
--- a/commands.c
+++ b/commands.c
@@ -149,7 +149,7 @@ set_file_variables (file)
cp = plus_value = (char *) alloca (plus_len);
- qmark_len = plus_len; /* Will be this or less. */
+ qmark_len = plus_len + 1; /* Will be this or less. */
for (d = file->deps; d != 0; d = d->next)
if (! d->ignore_mtime)
{