Diff between 3eb98cd478688407b57d412a8ef05d0d4dfab099 and d8b739b2057e498436d79ee2b403e559214036f9

Changed Files

File Additions Deletions Status
src/main.c +4 -4 modified

Full Patch

diff --git a/src/main.c b/src/main.c
index dc0478e..eafe2ed 100644
--- a/src/main.c
+++ b/src/main.c
@@ -282,10 +282,10 @@ static void init_defaults(void)
 	if (sscanf(VERSION, "%hhu.%hhu", &major, &minor) != 2)
 		return;
 
-        main_opts.did_source = 0x0002;		/* USB */
-        main_opts.did_vendor = 0x1d6b;		/* Linux Foundation */
-        main_opts.did_product = 0x0246;		/* BlueZ */
-        main_opts.did_version = (major << 8 | minor);
+	main_opts.did_source = 0x0002;		/* USB */
+	main_opts.did_vendor = 0x1d6b;		/* Linux Foundation */
+	main_opts.did_product = 0x0246;		/* BlueZ */
+	main_opts.did_version = (major << 8 | minor);
 }
 
 static GMainLoop *event_loop;