Skip to content

Commit

Permalink
Format code according to conventions (qmk#12381)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <hello@qmk.fm>
  • Loading branch information
2 people authored and mrtnee committed Nov 20, 2021
1 parent 48b038e commit c3c18eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/oled/oled_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ static void InvertCharacter(uint8_t *cursor) {

bool oled_init(uint8_t rotation) {
#if defined(USE_I2C) && defined(SPLIT_KEYBOARD)
if (!is_keyboard_master()) { return true; }
if (!is_keyboard_master()) {
return true;
}
#endif

oled_rotation = oled_init_user(rotation);
Expand Down

0 comments on commit c3c18eb

Please sign in to comment.