Fixing compilation problem which resulting from defining 'int c' as 'char c'.

This commit is contained in:
Alan Mishchenko 2011-04-19 23:16:12 -07:00
parent 7d9b3556bd
commit d8647f0b7b
1 changed files with 2 additions and 2 deletions

View File

@ -59,11 +59,11 @@ static int TypeCheck( Abc_Frame_t * pAbc, const char * s);
int Abc_RealMain( int argc, char * argv[] )
{
Abc_Frame_t * pAbc;
char sCommandUsr[500], sCommandTmp[100], sReadCmd[20], sWriteCmd[20], c;
char sCommandUsr[500], sCommandTmp[100], sReadCmd[20], sWriteCmd[20];
const char * sOutFile, * sInFile;
char * sCommand;
int fStatus = 0;
int fBatch, fInitSource, fInitRead, fFinalWrite;
int c, fBatch, fInitSource, fInitRead, fFinalWrite;
// added to detect memory leaks:
#if defined(_DEBUG) && defined(_MSC_VER)