Skip to content

Commit

Permalink
fix: dangling else
Browse files Browse the repository at this point in the history
  • Loading branch information
mmklee committed Nov 16, 2012
1 parent a6e08c9 commit 845446b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libfac/charset/csutil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,10 @@ select( const ListCFList & ppi, int length, ListCFList & ppi1, ListCFList & ppi2
{
elem = i.getItem();
if ( ! elem.isEmpty() )
{
if ( length <= elem.length() ){ ppi2.append(elem); }
else { ppi1.append(elem); }
}
}
}

Expand Down

0 comments on commit 845446b

Please sign in to comment.