summaryrefslogtreecommitdiff
path: root/android/pan.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-07-01 15:01:04 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-07-03 11:41:05 +0300
commitfad2138c4af0b0d46dd7ac65104eb9d2ad05bf0b (patch)
treec072e8f6f5270fef3b2c22169974d6d950062643 /android/pan.c
parent348b5af247b1dbee30f25c7d0abf57c47bd35def (diff)
downloadbluez-fad2138c4af0b0d46dd7ac65104eb9d2ad05bf0b.tar.gz
android: Fix local variables not being marked as static
Diffstat (limited to 'android/pan.c')
-rw-r--r--android/pan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/pan.c b/android/pan.c
index 9eab93209..c11ee29d4 100644
--- a/android/pan.c
+++ b/android/pan.c
@@ -63,8 +63,8 @@
#define BNEP_NAP_INTERFACE "bt-pan%d"
static bdaddr_t adapter_addr;
-GSList *devices = NULL;
-uint8_t local_role = HAL_PAN_ROLE_NONE;
+static GSList *devices = NULL;
+static uint8_t local_role = HAL_PAN_ROLE_NONE;
static struct ipc *hal_ipc = NULL;
struct pan_device {