Compiler warning.

This commit is contained in:
Alan Mishchenko 2017-09-06 16:40:38 -07:00
parent 16a9c21c80
commit 8063887ffe
1 changed files with 1 additions and 1 deletions

View File

@ -1198,7 +1198,7 @@ static inline int Prs_ManReadArguments( Prs_Man_t * p )
// 0 = reached end-of-file; 1 = successfully parsed; 2 = recognized as primitive; 3 = failed and skipped; 4 = error (failed and could not skip)
static inline int Prs_ManReadModule( Prs_Man_t * p )
{
int iToken, Status, fAlways = 0;
int iToken, Status = -1, fAlways = 0;
if ( p->pNtk != NULL ) return Prs_ManErrorSet(p, "Parsing previous module is unfinished.", 4);
if ( Prs_ManUtilSkipSpaces(p) )
{