Commit 17343bf1 by Alan Mishchenko

Compiler warning.

parent ce74153c
...@@ -554,7 +554,7 @@ static char * Io_MvLoadFileBz2( char * pFileName, int * pnFileSize ) ...@@ -554,7 +554,7 @@ static char * Io_MvLoadFileBz2( char * pFileName, int * pnFileSize )
int nFileSize = 0; int nFileSize = 0;
char * pContents; char * pContents;
BZFILE * b; BZFILE * b;
int bzError; int bzError, RetValue;
struct buflist * pNext; struct buflist * pNext;
buflist * bufHead = NULL, * buf = NULL; buflist * bufHead = NULL, * buf = NULL;
...@@ -603,7 +603,7 @@ static char * Io_MvLoadFileBz2( char * pFileName, int * pnFileSize ) ...@@ -603,7 +603,7 @@ static char * Io_MvLoadFileBz2( char * pFileName, int * pnFileSize )
} }
pContents = ABC_ALLOC( char, nFileSize + 10 ); pContents = ABC_ALLOC( char, nFileSize + 10 );
rewind( pFile ); rewind( pFile );
fread( pContents, nFileSize, 1, pFile ); RetValue = fread( pContents, nFileSize, 1, pFile );
} else { } else {
// Some other error. // Some other error.
Abc_Print( -1, "Io_MvLoadFileBz2(): Unable to read the compressed BLIF.\n" ); Abc_Print( -1, "Io_MvLoadFileBz2(): Unable to read the compressed BLIF.\n" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment