Skip to content

Commit

Permalink
The same problem in another place.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed Aug 1, 2024
1 parent 4f68f08 commit 35d67f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/base/abci/abc.c
Original file line number Diff line number Diff line change
Expand Up @@ -14231,6 +14231,7 @@ int Abc_CommandGenAT( Abc_Frame_t * pAbc, int argc, char ** argv )
extern void Abc_GenATDual( char * pFileName, Vec_Int_t * vNums );
int c, fDual = 0, fVerbose = 0;
char Command[1000], * pFileName = "out.blif";
Vec_Int_t * vNums = NULL;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "dvh" ) ) != EOF )
{
Expand All @@ -14250,7 +14251,7 @@ int Abc_CommandGenAT( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( argc == globalUtilOptind )
goto usage;
Vec_Int_t * vNums = Vec_IntAlloc( argc );
vNums = Vec_IntAlloc( argc );
for ( c = globalUtilOptind; c < argc; c++ )
Vec_IntPush( vNums, atoi(argv[c]) );
if ( fDual )
Expand Down

0 comments on commit 35d67f6

Please sign in to comment.