Bug fix in reading box library.

This commit is contained in:
Alan Mishchenko 2014-12-20 10:16:13 -08:00
parent 259d53ca3e
commit 55f0a2805c
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ If_LibBox_t * If_LibBoxRead2( char * pFileName )
char * If_LibBoxGetToken( FILE * pFile )
{
static char pBuffer[1000];
char c, * pTemp = pBuffer;
int c; char * pTemp = pBuffer;
while ( (c = fgetc(pFile)) != EOF )
{
if ( c == '#' )