fixed bug with -I flag
This commit is contained in:
parent
4581d9f266
commit
d7a034bc02
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ do_option(text)
|
|||
Realloc(inctable,(inc_max+=10)*sizeof(char *));
|
||||
}
|
||||
|
||||
for(i = inc_pos++; i <= inc_total; i++) {
|
||||
for(i = inc_pos++; i < inc_total; i++) {
|
||||
char *tmp = inctable[i];
|
||||
|
||||
inctable[i] = new;
|
||||
|
|
Loading…
Reference in a new issue