2011-12-15 13:19:19

by Santiago Carot

[permalink] [raw]
Subject: [PATCH] mcap_sync: fix import statements

---
health/mcap_sync.c | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/health/mcap_sync.c b/health/mcap_sync.c
index 5545cea..0e21877 100644
--- a/health/mcap_sync.c
+++ b/health/mcap_sync.c
@@ -21,21 +21,19 @@
*
*/

-#include "btio.h"
#include <stdint.h>
#include <netinet/in.h>
#include <time.h>
#include <stdlib.h>
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/l2cap.h>
-#include "../src/adapter.h"
-#include "../src/manager.h"
#include <sys/ioctl.h>

-#include "config.h"
-#include "log.h"
-
#include <bluetooth/bluetooth.h>
+#include <bluetooth/l2cap.h>
+#include <adapter.h>
+#include <manager.h>
+#include <btio.h>
+#include <log.h>
+
#include "mcap.h"
#include "mcap_lib.h"
#include "mcap_internal.h"
--
1.7.8