summaryrefslogtreecommitdiffstats
path: root/src/map/if
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-03-30 12:30:04 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-03-30 12:30:04 -0700
commit7f112787057a1524df78b682b20dbdfbd2578100 (patch)
treef9742d5095f8b1a7aa87e7cb3c25edf3e2b91c56 /src/map/if
parentd3a4dce10e89fa86f0feb2a7b53debdaa60fa3e4 (diff)
downloadabc-7f112787057a1524df78b682b20dbdfbd2578100.tar.gz
abc-7f112787057a1524df78b682b20dbdfbd2578100.tar.bz2
abc-7f112787057a1524df78b682b20dbdfbd2578100.zip
Compiler warnings.
Diffstat (limited to 'src/map/if')
-rw-r--r--src/map/if/ifLibBox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/if/ifLibBox.c b/src/map/if/ifLibBox.c
index 9423d4f9..7795338c 100644
--- a/src/map/if/ifLibBox.c
+++ b/src/map/if/ifLibBox.c
@@ -221,7 +221,7 @@ If_LibBox_t * If_LibBoxRead2( char * pFileName )
{
while ( pToken == NULL )
{
- fgets( pBuffer, nSize, pFile );
+ (void) fgets( pBuffer, nSize, pFile );
pToken = strtok( pBuffer, " \n\r\t" );
}
pBox->pDelays[i] = (pToken[0] == '-') ? -1 : atoi(pToken);