summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-06-13 21:21:48 +0000
committerPaul Smith <psmith@gnu.org>2009-06-13 21:21:48 +0000
commit43b5096f78479ba9c4a67744cc70b099cac2eee7 (patch)
tree47ab9802e84026d85beb9e0b409872069bfb0e93 /file.c
parent421c9c8c5b5c9be7728cbe6c1a1dfff999f9de44 (diff)
downloadmake-43b5096f78479ba9c4a67744cc70b099cac2eee7.tar.gz
- Fix Savannah bug 17825
- Fix Savannah bug 21231
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 95e37889..a618bebc 100644
--- a/file.c
+++ b/file.c
@@ -416,7 +416,7 @@ parse_prereqs (char *p)
{
struct dep *new = (struct dep *)
multi_glob (parse_file_seq (&p, '|', sizeof (struct dep), 1),
- sizeof (struct dep));
+ sizeof (struct dep), 0);
if (*p)
{
@@ -427,7 +427,7 @@ parse_prereqs (char *p)
++p;
ood = (struct dep *)
multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
- sizeof (struct dep));
+ sizeof (struct dep), 0);
if (! new)
new = ood;