From 00935510791c7f09eac2b8ecda4c0baefab5ae73 Mon Sep 17 00:00:00 2001
From: Arnout Engelen <arnouten@bzzt.net>
Date: Sat, 1 Jul 2017 20:25:01 +0200
Subject: Indent src/ginput/ginput_keyboard.c with tabs

src/ginput/ginput_keyboard.c was already mostly indented with tabs, but
some lines that were indented with spaces made it in there. This causes
trouble with GCC 6 which can warn (or error) on misleading indentations.
---
 src/ginput/ginput_keyboard.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/ginput/ginput_keyboard.c b/src/ginput/ginput_keyboard.c
index 0018dafb..141bdd2b 100644
--- a/src/ginput/ginput_keyboard.c
+++ b/src/ginput/ginput_keyboard.c
@@ -471,7 +471,7 @@ void _gkeyboardInit(void) {
 			static const GKeyboardVMT *	const dclist[] = {GINPUT_KEYBOARD_DRIVER_LIST};
 
 			for(i = 0; i < sizeof(dclist)/sizeof(dclist[0]); i++) {
-                if (!(dclist[i]->d.flags & GKEYBOARD_VFLG_DYNAMICONLY))
+				if (!(dclist[i]->d.flags & GKEYBOARD_VFLG_DYNAMICONLY))
 					gdriverRegister(&dclist[i]->d, 0);
 			}
 		}
@@ -481,8 +481,8 @@ void _gkeyboardInit(void) {
 		{
 			extern const GKeyboardVMT const GKEYBOARDVMT_OnlyOne[1];
 
-            if (!(GKEYBOARDVMT_OnlyOne->d.flags & GKEYBOARD_VFLG_DYNAMICONLY))
-					gdriverRegister(&GKEYBOARDVMT_OnlyOne->d, 0);
+			if (!(GKEYBOARDVMT_OnlyOne->d.flags & GKEYBOARD_VFLG_DYNAMICONLY))
+				gdriverRegister(&GKEYBOARDVMT_OnlyOne->d, 0);
 		}
 	#endif
 
@@ -493,43 +493,43 @@ void _gkeyboardDeinit(void) {
 }
 
 bool_t _gkeyboardInitDriver(GDriver *g, void *param, unsigned driverinstance, unsigned systeminstance) {
-    #define k   ((GKeyboard *)g)
+	#define k   ((GKeyboard *)g)
 	(void) param;
-    (void) systeminstance;
+	(void) systeminstance;
 
 	// The initial keyboard layout comes from the VMT
 	k->pLayout = gkvmt(k)->defLayout;
 
 	// Init the mouse
-    if (!gkvmt(k)->init((GKeyboard *)g, driverinstance))
-        return FALSE;
+	if (!gkvmt(k)->init((GKeyboard *)g, driverinstance))
+		return FALSE;
 
 	// Ensure the Poll timer is started
 	if (!gtimerIsActive(&KeyboardTimer))
 		gtimerStart(&KeyboardTimer, KeyboardPoll, 0, TRUE, GINPUT_KEYBOARD_POLL_PERIOD);
 
-    return TRUE;
+	return TRUE;
 
-    #undef k
+	#undef k
 }
 
 void _gkeyboardPostInitDriver(GDriver *g) {
-    #define     k   ((GKeyboard *)g)
+	#define     k   ((GKeyboard *)g)
 
 	// Run the init sequence from the layout microcode.
 	microengine(k, 0, FLAG_INIT);
 
-    #undef k
+	#undef k
 }
 
 void _gkeyboardDeInitDriver(GDriver *g) {
-    (void) g;
+	(void) g;
 }
 
 GSourceHandle ginputGetKeyboard(unsigned instance) {
 	if (instance == GKEYBOARD_ALL_INSTANCES)
 		return (GSourceHandle)&KeyboardTimer;
-    return (GSourceHandle)gdriverGetInstance(GDRIVER_TYPE_KEYBOARD, instance);
+	return (GSourceHandle)gdriverGetInstance(GDRIVER_TYPE_KEYBOARD, instance);
 }
 
 bool_t ginputGetKeyboardStatus(unsigned instance, GEventKeyboard *pe) {
-- 
cgit v1.2.3