summaryrefslogtreecommitdiff
path: root/quantum/color.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-01-19 16:30:34 +0000
committerFlorian Didron <fdidron@users.noreply.github.com>2020-02-26 10:15:12 +0900
commit4885430361f16a905feb9cda4d7faac5de7813ab (patch)
tree3f4a8f412eab5f71a9b1f9a555b899e33f2149ca /quantum/color.c
parent141e02df88dae50904b1e0507924e58a0b898a79 (diff)
Run clang-format manually to fix recently changed files (#7934)
* Run clang-format manually to fix recently changed files * Run clang-format manually to fix recently changed files - revert template files * Run clang-format manually to fix recently changed files - format off for ascii_to_keycode_lut
Diffstat (limited to 'quantum/color.c')
-rw-r--r--quantum/color.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/color.c b/quantum/color.c
index 85a6d52cf0..a5977e8ee2 100644
--- a/quantum/color.c
+++ b/quantum/color.c
@@ -88,9 +88,9 @@ RGB hsv_to_rgb(HSV hsv) {
#ifdef RGBW
-#ifndef MIN
-# define MIN(a, b) ((a) < (b) ? (a) : (b))
-#endif
+# ifndef MIN
+# define MIN(a, b) ((a) < (b) ? (a) : (b))
+# endif
void convert_rgb_to_rgbw(LED_TYPE *led) {
// Determine lowest value in all three colors, put that into
// the white channel and then shift all colors by that amount