Skip to content

Commit

Permalink
#8: fix hex number parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoerlein committed May 30, 2019
1 parent 7be8f8b commit 1c069d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap-pool/src/sys/stream/IStream.pool
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class IStream extends Object {
if (d == 11) { // 'b' or 'B'
base = 2;
this.readChar();
} else if (d == 34) { // 'x' or 'X'
} else if (d == 33) { // 'x' or 'X'
base = 16;
this.readChar();
} else if (d >= 0 && d < 8) {
Expand Down

0 comments on commit 1c069d0

Please sign in to comment.