Skip to content

Commit

Permalink
Fix pointer comparison issue #81
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4rr0 committed May 5, 2017
1 parent ac377d9 commit c969496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aligner_result.cpp
Expand Up @@ -1098,7 +1098,7 @@ bool AlnFlags::printYF(BTString& o, bool first) const {
else if(!nfilt_ ) flag = "NS";
else if(!scfilt_ ) flag = "SC";
else if(!qcfilt_ ) flag = "QC";
if(flag > 0) {
if(flag[0] != '\0') {
if(!first) o.append('\t');
o.append("YF:Z:");
o.append(flag);
Expand Down

0 comments on commit c969496

Please sign in to comment.