Commit 9a1ddaff authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Fixed line read problem

parent accc4ccd
...@@ -322,8 +322,10 @@ static int readLine( FILE* filePtr, StringVector& tokens, int* lineCount, FILE* ...@@ -322,8 +322,10 @@ static int readLine( FILE* filePtr, StringVector& tokens, int* lineCount, FILE*
if( isNotEof ){ if( isNotEof ){
(*lineCount)++; (*lineCount)++;
tokenizeString( buffer, tokens, delimiter ); tokenizeString( buffer, tokens, delimiter );
return 1;
} else {
return 0;
} }
return 0;
} }
......
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