summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-06-09 23:16:25 +0000
committerRoland McGrath <roland@redhat.com>1993-06-09 23:16:25 +0000
commit5b4a918d26707479ae7825a35f22f6c3b633255b (patch)
tree428182464f6633107d4f68ed0c993d4ce8ce70d9 /function.c
parentbd3309f09b710d7f7e6216003f214bce8cc3faa9 (diff)
downloadgunmake-5b4a918d26707479ae7825a35f22f6c3b633255b.tar.gz
Formerly function.c.~27~
Diffstat (limited to 'function.c')
-rw-r--r--function.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/function.c b/function.c
index 76fb73d..5109203 100644
--- a/function.c
+++ b/function.c
@@ -1152,12 +1152,13 @@ string_glob (line)
register struct nameseq *chain;
register unsigned int idx;
- chain = multi_glob (parse_file_seq (&line, '\0', sizeof (struct nameseq), 0),
- sizeof (struct nameseq),
- /* We do not want parse_file_seq to strip `./'s.
- That would break examples like:
- $(patsubst ./%.c,obj/%.o,$(wildcard ./*.c)) */
- 0);
+ chain = multi_glob (parse_file_seq
+ (&line, '\0', sizeof (struct nameseq),
+ /* We do not want parse_file_seq to strip `./'s.
+ That would break examples like:
+ $(patsubst ./%.c,obj/%.o,$(wildcard ./*.c)). */
+ 0),
+ sizeof (struct nameseq));
if (result == 0)
{