Fixed problem with -I option
This commit is contained in:
parent
928c2dacc5
commit
ce71090da3
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ deleted, is now a debug-flag
|
|||
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