diff options
Diffstat (limited to 'src/codec/hex')
-rw-r--r-- | src/codec/hex/hex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codec/hex/hex.cpp b/src/codec/hex/hex.cpp index 596e0e235..49d6e7190 100644 --- a/src/codec/hex/hex.cpp +++ b/src/codec/hex/hex.cpp @@ -101,7 +101,7 @@ size_t hex_decode(byte output[], for(size_t i = 0; i != input_length; ++i) { - const byte bin = HEX_TO_BIN[(byte)input[i]]; + const byte bin = HEX_TO_BIN[static_cast<byte>(input[i])]; if(bin >= 0x10) { |