Commit a9eb8677 by Alan Mishchenko

Explanation for one assetion.

parent 93bec213
......@@ -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);
......
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