Skip to content

Commit eb575af

Browse files
author
Grok Compression
committed
marker cache: fix a few warnings
1 parent 35dba98 commit eb575af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/core/codestream/markers/MarkerCache.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ void MarkerCache::dump(FILE* out)
4646
fprintf(out, "Codestream index from main header: {\n");
4747

4848
// 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_);
49+
fprintf(out, "\t Main header start position=%" PRIu64 "\n", mainHeaderStart_);
50+
fprintf(out, "\t Main header end position=%" PRIu64 "\n", tileStreamStart_);
5151

5252
// Print marker list
5353
fprintf(out, "\t Marker list: {\n");

0 commit comments

Comments
 (0)