diff options
author | QMK Bot <hello@qmk.fm> | 2020-08-29 22:57:48 +0000 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2020-09-30 03:46:37 -0700 |
commit | 3902b562fc3b7fc3a8390a744db0e4bad58707e1 (patch) | |
tree | 53ff7a02c35e577961b2dc8e0ded450cc6a2d23c /tmk_core/common/progmem.h | |
parent | db2254c3ea97aababea038d8c05b7a8990a0a139 (diff) |
format code according to conventions [skip ci]
Diffstat (limited to 'tmk_core/common/progmem.h')
-rw-r--r-- | tmk_core/common/progmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/progmem.h b/tmk_core/common/progmem.h index 41b5b537ce..c8863d3ad2 100644 --- a/tmk_core/common/progmem.h +++ b/tmk_core/common/progmem.h @@ -4,7 +4,7 @@ # include <avr/pgmspace.h> #else # define PROGMEM -# define PGM_P const char * +# define PGM_P const char* # define memcpy_P(dest, src, n) memcpy(dest, src, n) # define pgm_read_byte(address_short) *((uint8_t*)(address_short)) # define pgm_read_word(address_short) *((uint16_t*)(address_short)) |