summaryrefslogtreecommitdiffstats
path: root/src/map
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2016-12-31 22:00:26 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2016-12-31 22:00:26 +0700
commit3f2899d6ea1a141f40d7fdfe4556bb349d53c250 (patch)
treef364e1b2a6fd9f257822dfe27e0f41ac8e9c958d /src/map
parent8eb5d1896a82ef9d1d5e0f25bb6f23e29e9e2ada (diff)
downloadabc-3f2899d6ea1a141f40d7fdfe4556bb349d53c250.tar.gz
abc-3f2899d6ea1a141f40d7fdfe4556bb349d53c250.tar.bz2
abc-3f2899d6ea1a141f40d7fdfe4556bb349d53c250.zip
Compiler warnings.
Diffstat (limited to 'src/map')
-rw-r--r--src/map/scl/sclLiberty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/scl/sclLiberty.c b/src/map/scl/sclLiberty.c
index 50e69d08..5ecf76bb 100644
--- a/src/map/scl/sclLiberty.c
+++ b/src/map/scl/sclLiberty.c
@@ -509,7 +509,7 @@ char * Scl_LibertyFileContents( char * pFileName, int nContents )
{
FILE * pFile = fopen( pFileName, "rb" );
char * pContents = ABC_ALLOC( char, nContents+1 );
- int RetValue;
+ int RetValue = 0;
RetValue = fread( pContents, nContents, 1, pFile );
fclose( pFile );
pContents[nContents] = 0;
@@ -518,7 +518,7 @@ char * Scl_LibertyFileContents( char * pFileName, int nContents )
void Scl_LibertyStringDump( char * pFileName, Vec_Str_t * vStr )
{
FILE * pFile = fopen( pFileName, "wb" );
- int RetValue;
+ int RetValue = 0;
if ( pFile == NULL )
{
printf( "Scl_LibertyStringDump(): The output file is unavailable.\n" );
@@ -583,7 +583,7 @@ Scl_Tree_t * Scl_LibertyParse( char * pFileName, int fVerbose )
return NULL;
pPos = p->pContents;
Scl_LibertyWipeOutComments( p->pContents, p->pContents+p->nContents );
- if ( !Scl_LibertyBuildItem( p, &pPos, p->pContents + p->nContents ) == 0 )
+ if ( (!Scl_LibertyBuildItem( p, &pPos, p->pContents + p->nContents )) == 0 )
{
if ( p->pError ) printf( "%s", p->pError );
printf( "Parsing failed. " );