summaryrefslogtreecommitdiff
path: root/android/hal-avrcp.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-07-01 14:54:32 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-07-03 11:41:05 +0300
commit348b5af247b1dbee30f25c7d0abf57c47bd35def (patch)
tree5db5e29cf8d1a50ef65bb2daf99ff6fb10fdc1b9 /android/hal-avrcp.c
parent697110ce07ff6fe890b0ebce5476a37947b78d88 (diff)
downloadbluez-348b5af247b1dbee30f25c7d0abf57c47bd35def.tar.gz
android: Fix non-ANSI function declaration
Diffstat (limited to 'android/hal-avrcp.c')
-rw-r--r--android/hal-avrcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/hal-avrcp.c b/android/hal-avrcp.c
index 51ab7daa5..761ddfba8 100644
--- a/android/hal-avrcp.c
+++ b/android/hal-avrcp.c
@@ -645,7 +645,7 @@ static bt_status_t set_volume(uint8_t volume)
sizeof(cmd), &cmd, NULL, NULL, NULL);
}
-static void cleanup()
+static void cleanup(void)
{
struct hal_cmd_unregister_module cmd;
@@ -680,7 +680,7 @@ static btrc_interface_t iface = {
.cleanup = cleanup
};
-btrc_interface_t *bt_get_avrcp_interface()
+btrc_interface_t *bt_get_avrcp_interface(void)
{
return &iface;
}