Skip to content

Commit

Permalink
typo fix ! Sorry
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericBregier authored and trustin committed May 31, 2012
1 parent a91e724 commit a73e6ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ void skipControlCharacters() {
}

while (sao.pos < sao.limit) {
char c = (char) ()sao.bytes[sao.pos ++] & 0xFF);
char c = (char) (sao.bytes[sao.pos ++] & 0xFF);
if (!Character.isISOControl(c) && !Character.isWhitespace(c)) {
sao.setReadPosition(1);
return;
Expand Down

0 comments on commit a73e6ea

Please sign in to comment.