mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-01-30 16:41:44 +00:00
(parse_file_seq): Fix typo in last change. Remove unused variable.
This commit is contained in:
parent
b2522ec319
commit
8f581d3bc0
1 changed files with 1 additions and 2 deletions
3
read.c
3
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. */
|
||||
|
|
Loading…
Reference in a new issue