From 075e001af87f01465959e343f972c83f6e5ea911 Mon Sep 17 00:00:00 2001 From: Pascal Getreuer Date: Sat, 4 Jan 2025 21:21:42 -0800 Subject: [PATCH] Fix formatting. --- quantum/keycode_string.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quantum/keycode_string.h b/quantum/keycode_string.h index a8b00a58cc7..a1f39c95d23 100644 --- a/quantum/keycode_string.h +++ b/quantum/keycode_string.h @@ -92,9 +92,11 @@ typedef struct { extern const keycode_string_name_t custom_keycode_names[]; /** Helper to define a keycode_string_name_t. */ -# define KEYCODE_STRING_NAME(kc) {(kc), PSTR(#kc)} +# define KEYCODE_STRING_NAME(kc) \ + { (kc), PSTR(#kc) } /** Makes end-of-table sentinel for a table of keycode_string_name_t. */ -# define KEYCODE_STRING_NAMES_END {0, NULL} +# define KEYCODE_STRING_NAMES_END \ + { 0, NULL } #else