Skip to content

Commit

Permalink
fixup! fixup! Baseline formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrot committed Jan 1, 2025
1 parent eb058ea commit 6f406ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_ccx/ccx_encoders_spupng.c
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ uint32_t *utf8_to_utf32(char *src)
}

// Convert big-endian and little-endian
#define BigtoLittle32(A) ( \
#define BigtoLittle32(A) ( \
(((uint32_t)(A) & 0xff000000) >> 24) | \
(((uint32_t)(A) & 0x00ff0000) >> 8) | \
(((uint32_t)(A) & 0x0000ff00) << 8) | \
Expand Down

0 comments on commit 6f406ed

Please sign in to comment.