Skip to content

Commit

Permalink
Using PRId64 in place of %ld in chunk.c (#1287)
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>

Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm authored Oct 24, 2022
1 parent 2ef5b30 commit d59452a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ extract_chunk_leader (
return ctxt->print_error (
ctxt,
EXR_ERR_BAD_CHUNK_LEADER,
"Invalid chunk size reconstructing chunk table: found out of range %ld",
"Invalid chunk size reconstructing chunk table: found out of range %"PRId64,
leaderdata->deep_data[1]);
}
leaderdata->packed_size = leaderdata->deep_packed_size;
Expand Down

0 comments on commit d59452a

Please sign in to comment.