]> git.ipfire.org Git - thirdparty/make.git/commitdiff
(parse_file_seq): Fix typo in last change. Remove unused variable.
authorRoland McGrath <roland@redhat.com>
Thu, 21 Apr 1994 21:28:59 +0000 (21:28 +0000)
committerRoland McGrath <roland@redhat.com>
Thu, 21 Apr 1994 21:28:59 +0000 (21:28 +0000)
read.c

diff --git a/read.c b/read.c
index a74b9e32c4c8fc7d8108d62451a537e1040a9c81..e6ea272d67a499a3947eb58b2d58a05a1ef08044 100644 (file)
--- a/read.c
+++ b/read.c
@@ -1512,7 +1512,6 @@ parse_file_seq (stringp, stopchar, size, strip)
   register char *p = *stringp;
   char *q;
   char *name;
-  register int c;
 
   while (1)
     {
@@ -1526,7 +1525,7 @@ parse_file_seq (stringp, stopchar, size, strip)
       q = p;
       p = find_char_unquote (q, stopchar, 1);
       if (p == 0)
-       p = q + strlen (q)
+       p = q + strlen (q);
 
       if (strip)
        /* Skip leading `./'s.  */