aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-03-24 16:28:07 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-03-24 16:28:07 +0000
commit22c044b422fab754b9c2bda106050ab841978843 (patch)
tree98f88d4ed3fec601830e7604e870806590e6aaf4 /code/tools
parent5fe95807b7152fc6cd5172f0f186b1cb2b8d6954 (diff)
downloadioquake3-aero-22c044b422fab754b9c2bda106050ab841978843.tar.gz
ioquake3-aero-22c044b422fab754b9c2bda106050ab841978843.zip
* Fix a warning introduced by the recent LCC fix
git-svn-id: svn://svn.icculus.org/quake3/trunk@665 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools')
-rw-r--r--code/tools/lcc/cpp/unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/tools/lcc/cpp/unix.c b/code/tools/lcc/cpp/unix.c
index b7850df..397b1b4 100644
--- a/code/tools/lcc/cpp/unix.c
+++ b/code/tools/lcc/cpp/unix.c
@@ -19,7 +19,7 @@ setup(int argc, char **argv)
char *fp, *dp;
Tokenrow tr;
extern void setup_kwtab(void);
- char *includeDirs[ NINCLUDE ] = { 0 };
+ uchar *includeDirs[ NINCLUDE ] = { 0 };
int numIncludeDirs = 0;
setup_kwtab();
@@ -77,7 +77,7 @@ setup(int argc, char **argv)
includelist[NINCLUDE-1].file = dp;
for( i = 0; i < numIncludeDirs; i++ )
- appendDirToIncludeList( includeDirs[ i ] );
+ appendDirToIncludeList( (char *)includeDirs[ i ] );
setsource(fp, fd, NULL);
}