From 90af2bb55c62e34391557178a2b86ba03ca0b0a2 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 1 Jul 2014 15:03:26 +0300 Subject: [PATCH] android/gatt: Fix duplicate const --- android/gatt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/gatt.c b/android/gatt.c index 677a337bb..95de221d2 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -82,7 +82,7 @@ typedef enum { DEVICE_CONNECTED, /* connection has been established */ } gatt_device_state_t; -static const char const *device_state_str[] = { +static const char *device_state_str[] = { "DISCONNECTED", "CONNECT INIT", "CONNECT READY", -- 2.47.3