mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 13:11:30 +00:00
* Fix a warning introduced by the recent LCC fix
This commit is contained in:
parent
e31d46651d
commit
4f55e9f989
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ setup(int argc, char **argv)
|
||||||
char *fp, *dp;
|
char *fp, *dp;
|
||||||
Tokenrow tr;
|
Tokenrow tr;
|
||||||
extern void setup_kwtab(void);
|
extern void setup_kwtab(void);
|
||||||
char *includeDirs[ NINCLUDE ] = { 0 };
|
uchar *includeDirs[ NINCLUDE ] = { 0 };
|
||||||
int numIncludeDirs = 0;
|
int numIncludeDirs = 0;
|
||||||
|
|
||||||
setup_kwtab();
|
setup_kwtab();
|
||||||
|
@ -77,7 +77,7 @@ setup(int argc, char **argv)
|
||||||
includelist[NINCLUDE-1].file = dp;
|
includelist[NINCLUDE-1].file = dp;
|
||||||
|
|
||||||
for( i = 0; i < numIncludeDirs; i++ )
|
for( i = 0; i < numIncludeDirs; i++ )
|
||||||
appendDirToIncludeList( includeDirs[ i ] );
|
appendDirToIncludeList( (char *)includeDirs[ i ] );
|
||||||
|
|
||||||
setsource(fp, fd, NULL);
|
setsource(fp, fd, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue