From f77b3ccf8a3c3b94264dc6137c5a3f1fdd08dc7f Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Wed, 25 Sep 2013 06:13:44 -0400 Subject: [PATCH] Fix linux, probably. --- Source/Core/Core/Src/IPC_HLE/hci.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/Src/IPC_HLE/hci.h b/Source/Core/Core/Src/IPC_HLE/hci.h index 1c59d4036b..b87e20fd84 100644 --- a/Source/Core/Core/Src/IPC_HLE/hci.h +++ b/Source/Core/Core/Src/IPC_HLE/hci.h @@ -98,9 +98,11 @@ /* * Bluetooth device address */ +#ifndef __BLUETOOTH_H typedef struct { uint8_t b[BLUETOOTH_BDADDR_SIZE]; } bdaddr_t; +#endif #define BDADDR_ANY { { 0, 0, 0, 0, 0, 0 } }