aboutsummaryrefslogtreecommitdiffstats
path: root/common/rdr/HexInStream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/rdr/HexInStream.cxx')
-rw-r--r--common/rdr/HexInStream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rdr/HexInStream.cxx b/common/rdr/HexInStream.cxx
index 3eac9d2e..8a88d337 100644
--- a/common/rdr/HexInStream.cxx
+++ b/common/rdr/HexInStream.cxx
@@ -81,9 +81,9 @@ bool HexInStream::fillBuffer() {
return false;
size_t length = min(in_stream.avail()/2, availSpace());
- const U8* iptr = in_stream.getptr(length*2);
+ const uint8_t* iptr = in_stream.getptr(length*2);
- U8* optr = (U8*) end;
+ uint8_t* optr = (uint8_t*) end;
for (size_t i=0; i<length; i++) {
int v = 0;
readHexAndShift(iptr[i*2], &v);