Explanation for one assetion.

This commit is contained in:
Alan Mishchenko 2013-11-26 21:35:13 -08:00
parent 93bec213fc
commit a9eb8677fe
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ If_LibBox_t * If_LibBoxRead2( char * pFileName )
while ( pToken == NULL )
{
if ( fgets( pBuffer, nSize, pFile ) == NULL )
assert( 0 );
{ printf( "The table does not have enough entries.\n" ); fflush(stdout); assert( 0 ); }
pToken = strtok( pBuffer, " \n\r\t" );
}
pBox->pDelays[i] = (pToken[0] == '-') ? -1 : atoi(pToken);