Skip to content

Commit fd385e3

Browse files
Fix issue with atomic_compare_exchange_strong due to inappropriate type on 32 bit platforms
Signed-off-by: Christopher Schwartz <christopherschwartz@xrite.com>
1 parent 928f9a4 commit fd385e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/OpenEXRCore/chunk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ extract_chunk_table (
565565
if (ctable == NULL)
566566
{
567567
int64_t nread = 0;
568-
uintptr_t eptr = 0, nptr = 0;
568+
uint64_t eptr = 0, nptr = 0;
569569
int complete = 1;
570570
uint64_t maxoff = ((uint64_t) -1);
571571
exr_result_t rv;

0 commit comments

Comments
 (0)