From a49fa76fa8651aafd11dc0c6bb6130220fc1bed9 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 31 Oct 2013 10:37:20 +0200 Subject: [PATCH] android/haltest: Fix bug when building for Android 4.2.2 Since I started to use system Android headers instead of local this bug was found. --- android/client/if-bt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/client/if-bt.c b/android/client/if-bt.c index a20a7c6e7..680738ee3 100644 --- a/android/client/if-bt.c +++ b/android/client/if-bt.c @@ -789,10 +789,10 @@ static void get_profile_interface_c(int argc, const char **argv, BT_PROFILE_SOCKETS_ID, BT_PROFILE_HIDHOST_ID, BT_PROFILE_PAN_ID, -#if PLATFORM_SDK_VERSION >= 18 +#if PLATFORM_SDK_VERSION > 17 BT_PROFILE_GATT_ID, -#endif BT_PROFILE_AV_RC_ID, +#endif NULL }; -- 2.11.0