diff options
Diffstat (limited to 'src/Platform/TextReader.cpp')
-rw-r--r-- | src/Platform/TextReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/TextReader.cpp b/src/Platform/TextReader.cpp index 7d6a0c64..bdaf19c2 100644 --- a/src/Platform/TextReader.cpp +++ b/src/Platform/TextReader.cpp @@ -26,7 +26,7 @@ namespace VeraCrypt outputString.erase(); char c; - while (InputStream->Read (BufferPtr ((byte *) &c, sizeof (c))) == sizeof (c)) + while (InputStream->Read (BufferPtr ((uint8 *) &c, sizeof (c))) == sizeof (c)) { if (c == '\r') continue; |