From 602d2297471d5ee6fa2f7f25dc1d68a0f5160382 Mon Sep 17 00:00:00 2001 From: kaidokert Date: Wed, 27 Dec 2023 13:01:13 -0800 Subject: [PATCH] Fix a size_t/off_t mismatch build warning. --- include/ots-memory-stream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ots-memory-stream.h b/include/ots-memory-stream.h index cb844709..ec0b362f 100644 --- a/include/ots-memory-stream.h +++ b/include/ots-memory-stream.h @@ -26,7 +26,7 @@ class MemoryStream : public OTSStream { return false; } std::memcpy(static_cast(ptr_) + off_, data, length); - off_ += length; + off_ += static_cast(length); return true; } @@ -82,7 +82,7 @@ class ExpandingMemoryStream : public OTSStream { return WriteRaw(data, length); } std::memcpy(static_cast(ptr_) + off_, data, length); - off_ += length; + off_ += static_cast(length); return true; }