Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
getreuer committed Jan 5, 2025
1 parent 580f8bd commit 075e001
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions quantum/keycode_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 075e001

Please sign in to comment.