Browse Source

Format code according to conventions (#12381)

Co-authored-by: QMK Bot <hello@qmk.fm>
github-actions[bot] 4 years ago
parent
commit
67252c246c
1 changed files with 3 additions and 1 deletions
  1. 3 1
      drivers/oled/oled_driver.c

+ 3 - 1
drivers/oled/oled_driver.c

@@ -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);