summaryrefslogtreecommitdiff
path: root/android/tester-bluetooth.c
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2014-07-18 14:11:55 +0200
committerSzymon Janc <szymon.janc@tieto.com>2014-07-18 14:13:59 +0200
commit523fc92b8d6325319349b8a2d98cb762f1965a96 (patch)
tree63d3bef3153e4bbe17cf46ae1bfacb8f62d34cc6 /android/tester-bluetooth.c
parent0199e916208447f3a0b6811f4fecc85554ec3414 (diff)
downloadbluez-523fc92b8d6325319349b8a2d98cb762f1965a96.tar.gz
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.
Diffstat (limited to 'android/tester-bluetooth.c')
-rw-r--r--android/tester-bluetooth.c2
1 files changed, 1 insertions, 1 deletions
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,