Skip to content

Commit

Permalink
Fix issue with atomic_compare_exchange_strong due to inappropriate ty…
Browse files Browse the repository at this point in the history
…pe on 32 bit platforms

Signed-off-by: Christopher Schwartz <[email protected]>
  • Loading branch information
ChristopherSchwartzXRITE committed Jan 13, 2025
1 parent 8bc3fae commit 6d8e291
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 @@ -565,7 +565,7 @@ extract_chunk_table (
if (ctable == NULL)
{
int64_t nread = 0;
uintptr_t eptr = 0, nptr = 0;
uint64_t eptr = 0, nptr = 0;
int complete = 1;
uint64_t maxoff = ((uint64_t) -1);
exr_result_t rv;
Expand Down

0 comments on commit 6d8e291

Please sign in to comment.