summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/cassimg.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-07-31 14:58:11 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-07-31 14:59:01 +0200
commitaeadbfe2b180e6bf75687696d97a0a5f359d05f2 (patch)
treea4abd0a673b2557cb0234af8064b10d6554f3435 /src/lib/formats/cassimg.cpp
parentc703235246ee1631938e1fccca92e5391db490f7 (diff)
fix linux compile (nw)
Diffstat (limited to 'src/lib/formats/cassimg.cpp')
-rw-r--r--src/lib/formats/cassimg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/cassimg.cpp b/src/lib/formats/cassimg.cpp
index edb1b9c138a..e62d2013ecb 100644
--- a/src/lib/formats/cassimg.cpp
+++ b/src/lib/formats/cassimg.cpp
@@ -779,7 +779,7 @@ casserr_t cassette_read_modulated_data(cassette_image *cassette, int channel, do
}
else
{
- buffer_length = std::min(length, U64(100000));
+ buffer_length = std::min(length, UINT64(100000));
alloc_buffer = (UINT8*)malloc(buffer_length);
if (!alloc_buffer)
{