Extendig the size of command line when running ABC in batch mode.

This commit is contained in:
Alan Mishchenko 2014-02-12 21:34:09 -08:00
parent ee72a4caf6
commit 48e04c8f22
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ static int TypeCheck( Abc_Frame_t * pAbc, const char * s);
int Abc_RealMain( int argc, char * argv[] )
{
Abc_Frame_t * pAbc;
char sCommandUsr[500] = {0}, sCommandTmp[100], sReadCmd[20], sWriteCmd[20];
char sCommandUsr[ABC_MAX_STR] = {0}, sCommandTmp[ABC_MAX_STR], sReadCmd[1000], sWriteCmd[1000];
const char * sOutFile, * sInFile;
char * sCommand;
int fStatus = 0;