From 523fc92b8d6325319349b8a2d98cb762f1965a96 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 18 Jul 2014 14:11:55 +0200 Subject: [PATCH] android/tester-ng: Fix timestamp property type This type is unspecified in HAL API and we currently use uint32_t for it. This also fix build error on 32bit machines. --- android/tester-bluetooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/tester-bluetooth.c b/android/tester-bluetooth.c index c36b5079f..a5096affe 100644 --- a/android/tester-bluetooth.c +++ b/android/tester-bluetooth.c @@ -368,7 +368,7 @@ static struct bt_action_data prop_test_ble_bonded_dev_req = { .prop = &prop_test_bonded_dev_addr, }; -static long test_remote_timestamp_val = 0x7f3d79965adf; +static uint32_t test_remote_timestamp_val = 42; static bt_property_t prop_test_ble_remote_timestamp_prop = { .type = BT_PROPERTY_REMOTE_DEVICE_TIMESTAMP, .val = &test_remote_timestamp_val, -- 2.47.3