1
0
Fork 0

format code according to conventions [skip ci]

This commit is contained in:
QMK Bot 2020-01-24 02:15:29 +00:00
parent d13ada1162
commit fe50883c15
3 changed files with 3 additions and 4 deletions

View file

@ -18,7 +18,7 @@
#ifndef EEPROM_SIZE
# include "eeconfig.h"
# define EEPROM_SIZE (((EECONFIG_SIZE+3)/4)*4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO
# define EEPROM_SIZE (((EECONFIG_SIZE + 3) / 4) * 4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO
#endif
__attribute__((aligned(4))) static uint8_t buffer[EEPROM_SIZE];