Skip to content

Commit

Permalink
remove copy paste bug
Browse files Browse the repository at this point in the history
Signed-off-by: Kimball Thurston <[email protected]>
  • Loading branch information
kdt3rd committed Dec 31, 2024
1 parent b80e953 commit a6d0c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/internal_dwa_encoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ countLeadingZeros(uint16_t src)
}
#else
// courtesy hacker's delight
static int ALWAYS_INLINE countLeadingZeros( uint32_t x )
static int inline countLeadingZeros( uint32_t x )
{
x |= (x >> 1);
x |= (x >> 2);
Expand Down

0 comments on commit a6d0c52

Please sign in to comment.