summaryrefslogtreecommitdiffstats
path: root/src/misc/bbl
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-02-16 21:53:16 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-02-16 21:53:16 -0800
commit791b107e7a225103ee76c921c3c4a96d0e1adae2 (patch)
tree80d8e58053fbca2087d57b7fa8cbca7c594aa764 /src/misc/bbl
parent933744347b36315b42338dfdee5934f87d029398 (diff)
downloadabc-791b107e7a225103ee76c921c3c4a96d0e1adae2.tar.gz
abc-791b107e7a225103ee76c921c3c4a96d0e1adae2.tar.bz2
abc-791b107e7a225103ee76c921c3c4a96d0e1adae2.zip
Silencing some of the gcc warnings.
Diffstat (limited to 'src/misc/bbl')
-rw-r--r--src/misc/bbl/bblif.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/misc/bbl/bblif.c b/src/misc/bbl/bblif.c
index fc227760..47190fb7 100644
--- a/src/misc/bbl/bblif.c
+++ b/src/misc/bbl/bblif.c
@@ -667,10 +667,11 @@ char * Bbl_ManFileRead( char * pFileName )
FILE * pFile;
char * pContents;
int nFileSize;
+ int RetValue;
nFileSize = Bbl_ManFileSize( pFileName );
pFile = fopen( pFileName, "rb" );
pContents = BBLIF_ALLOC( char, nFileSize );
- fread( pContents, nFileSize, 1, pFile );
+ RetValue = fread( pContents, nFileSize, 1, pFile );
fclose( pFile );
return pContents;
}