summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-04-21 21:28:59 +0000
committerRoland McGrath <roland@redhat.com>1994-04-21 21:28:59 +0000
commit8f581d3bc0322f0227bbe0bc992dbd8c8f1b6376 (patch)
treea2ed489ea0cc0e26cc33a8bcb73352c363d6e1f0
parentb2522ec31937682d80a1ea11c94ab5daba6704bf (diff)
downloadgunmake-8f581d3bc0322f0227bbe0bc992dbd8c8f1b6376.tar.gz
(parse_file_seq): Fix typo in last change. Remove unused variable.
-rw-r--r--read.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/read.c b/read.c
index a74b9e3..e6ea272 100644
--- 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. */