diff options
author | Roland McGrath <roland@redhat.com> | 1994-04-21 21:28:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-04-21 21:28:59 +0000 |
commit | 8f581d3bc0322f0227bbe0bc992dbd8c8f1b6376 (patch) | |
tree | a2ed489ea0cc0e26cc33a8bcb73352c363d6e1f0 | |
parent | b2522ec31937682d80a1ea11c94ab5daba6704bf (diff) | |
download | gunmake-8f581d3bc0322f0227bbe0bc992dbd8c8f1b6376.tar.gz |
(parse_file_seq): Fix typo in last change. Remove unused variable.
-rw-r--r-- | read.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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. */ |