Skip to content

Commit fc8f0f4

Browse files
author
Grok Compression
committed
clang: fixed another warning
1 parent b9c0369 commit fc8f0f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/core/core_compress.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] const char** argv)
214214
size_t written = fwrite(outputStreamParams.buf, 1, compressedLength, fp);
215215
if(written != compressedLength)
216216
{
217-
fprintf(stderr, "Buffer compress: only %" PRIu64 " bytes written out of %" PRIu64 " total",
217+
fprintf(stderr, "Buffer compress: only %" PRIu64 " bytes written out of %zu total",
218218
compressedLength, written);
219219
}
220220
fclose(fp);

0 commit comments

Comments
 (0)