Skip to content

Commit

Permalink
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 de88c63 commit eb058ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib_ccx/ccx_encoders_spupng.c
Original file line number Diff line number Diff line change
Expand Up @@ -705,10 +705,10 @@ uint32_t *utf8_to_utf32(char *src)

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

// Generate PNG file from an UTF-8 string (str)
// PNG file will be stored at output
Expand Down

0 comments on commit eb058ea

Please sign in to comment.