From a60cbd752a07d68d1f75a10d7f9ccbf2009aa02a Mon Sep 17 00:00:00 2001
From: Rahix <rahix@rahix.de>
Date: Sat, 31 Aug 2019 11:38:36 +0200
Subject: [PATCH] style(config): Fix white-space errors

Signed-off-by: Rahix <rahix@rahix.de>
---
 epicardium/modules/config.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/epicardium/modules/config.c b/epicardium/modules/config.c
index 47396e21..a209550c 100644
--- a/epicardium/modules/config.c
+++ b/epicardium/modules/config.c
@@ -31,17 +31,17 @@ struct config_option {
 
 static struct config_option s_options[_EpicOptionCount] = {
 /* clang-format off */
-	#define INIT_Boolean(v)		        { .boolean        = (v) }
-	#define INIT_Int(v)  		        { .integer        = (v) }
-	#define INIT_Float(v)  		        { .floating_point = (v) }
-	#define INIT_String(v)  	        { .string         = (v) }
-	#define INIT_(tp, v)                INIT_ ## tp (v)
-	#define INIT(tp, v)                 INIT_ (tp, v)
+	#define INIT_Boolean(v)  { .boolean        = (v) }
+	#define INIT_Int(v)      { .integer        = (v) }
+	#define INIT_Float(v)    { .floating_point = (v) }
+	#define INIT_String(v)   { .string         = (v) }
+	#define INIT_(tp, v)     INIT_ ## tp (v)
+	#define INIT(tp, v)      INIT_ (tp, v)
 
-	#define CARD10_SETTING(identifier, spelling, tp, default_value)     \
+	#define CARD10_SETTING(identifier, spelling, tp, default_value)         \
 		[Option ## identifier] = { .name  = (spelling),                 \
-					               .type  = OptionType_ ## tp,          \
-					               .value = INIT(tp, (default_value)) },
+		                           .type  = OptionType_ ## tp,          \
+		                           .value = INIT(tp, (default_value)) },
 
 	#include "modules/config.def"
 	/* clang-format on */
-- 
GitLab