aboutsummaryrefslogtreecommitdiffstats
path: root/common/rdr/FileInStream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/rdr/FileInStream.cxx')
-rw-r--r--common/rdr/FileInStream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rdr/FileInStream.cxx b/common/rdr/FileInStream.cxx
index 43f9ea4c..6de1a5b2 100644
--- a/common/rdr/FileInStream.cxx
+++ b/common/rdr/FileInStream.cxx
@@ -45,7 +45,7 @@ FileInStream::~FileInStream(void) {
bool FileInStream::fillBuffer()
{
- size_t n = fread((U8 *)end, 1, availSpace(), file);
+ size_t n = fread((uint8_t*)end, 1, availSpace(), file);
if (n == 0) {
if (ferror(file))
throw SystemException("fread", errno);