From 6f406ed6befa31505a81df57a3e3858349556190 Mon Sep 17 00:00:00 2001 From: Jean-Sebastien Trottier Date: Tue, 31 Dec 2024 19:12:19 -0500 Subject: [PATCH] fixup! fixup! Baseline formatting fixes --- src/lib_ccx/ccx_encoders_spupng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_ccx/ccx_encoders_spupng.c b/src/lib_ccx/ccx_encoders_spupng.c index 6037b53b8..5c727aa7a 100644 --- a/src/lib_ccx/ccx_encoders_spupng.c +++ b/src/lib_ccx/ccx_encoders_spupng.c @@ -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) | \