Skip to content

Commit

Permalink
Compiler problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed Sep 15, 2023
1 parent 09013f3 commit 57cc2bd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/base/abci/abc.c
Original file line number Diff line number Diff line change
Expand Up @@ -51592,6 +51592,8 @@ int Abc_CommandAbc9GenHie( Abc_Frame_t * pAbc, int argc, char ** argv )
{
extern void Gia_GenSandwich( char ** pFNames, int nFNames );
int c, fVerbose = 0;
char ** pArgvNew;
int nArgcNew;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "vh" ) ) != EOF )
{
Expand All @@ -51606,8 +51608,8 @@ int Abc_CommandAbc9GenHie( Abc_Frame_t * pAbc, int argc, char ** argv )
goto usage;
}
}
char ** pArgvNew = argv + globalUtilOptind;
int nArgcNew = argc - globalUtilOptind;
pArgvNew = argv + globalUtilOptind;
nArgcNew = argc - globalUtilOptind;
Gia_GenSandwich( pArgvNew, nArgcNew );
return 0;
usage:
Expand Down

0 comments on commit 57cc2bd

Please sign in to comment.