Skip to content

Commit

Permalink
Update interleave-pairs.cpp
Browse files Browse the repository at this point in the history
Fix for #27
  • Loading branch information
Philipp Rescheneder committed Nov 13, 2017
1 parent f139a96 commit a5f3ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/paired/interleave-pairs.cpp
Expand Up @@ -59,7 +59,7 @@ IParser * DetermineParserStr(string strfileName) {
Fatal();
}
char * buffer = new char[1000];
while (gzgets(fp, buffer, 1000) > 0 && buffer[0] == '@') {
while (gzgets(fp, buffer, 1000) && buffer[0] == '@') {
}
gzclose(fp);

Expand Down

0 comments on commit a5f3ef9

Please sign in to comment.