diff options
| author | Martin Ridgers <[email protected]> | 2021-12-02 08:46:33 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-12-02 11:36:19 +0100 |
| commit | 31a935e27889f6eb2754071144ba4e2ebf133a07 (patch) | |
| tree | 9c84ce6668c33c985f7c6a46d18057c493863f30 | |
| parent | If-def'd a #pragma statement (diff) | |
| download | zen-31a935e27889f6eb2754071144ba4e2ebf133a07.tar.xz zen-31a935e27889f6eb2754071144ba4e2ebf133a07.zip | |
Signed-unsigned comparison compile fix
| -rw-r--r-- | zen/chunk/chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/chunk/chunk.cpp b/zen/chunk/chunk.cpp index 590a55180..ab019f04d 100644 --- a/zen/chunk/chunk.cpp +++ b/zen/chunk/chunk.cpp @@ -671,7 +671,7 @@ public: zen::IoBuffer CompressedBuffer = m_CompressionBufferManager->AllocBuffer(); char* CompressBuffer = (char*)CompressedBuffer.Data(); - ZEN_ASSERT(CompressedBuffer.Size() >= CompressBufferSize); + ZEN_ASSERT(CompressedBuffer.Size() >= size_t(CompressBufferSize)); const int CompressedSize = LZ4_compress_default((const char*)DataPointer, CompressBuffer, |