We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35dba98 commit eb575afCopy full SHA for eb575af
src/lib/core/codestream/markers/MarkerCache.cpp
@@ -46,8 +46,8 @@ void MarkerCache::dump(FILE* out)
46
fprintf(out, "Codestream index from main header: {\n");
47
48
// Print main header positions
49
- fprintf(out, "\t Main header start position=%zu\n", mainHeaderStart_);
50
- fprintf(out, "\t Main header end position=%zu\n", tileStreamStart_);
+ fprintf(out, "\t Main header start position=%" PRIu64 "\n", mainHeaderStart_);
+ fprintf(out, "\t Main header end position=%" PRIu64 "\n", tileStreamStart_);
51
52
// Print marker list
53
fprintf(out, "\t Marker list: {\n");
0 commit comments