Repository: incubator-mynewt-core Updated Branches: refs/heads/develop 3ad2ce23d -> cfc231441
BLE Host - Minor formatting change. Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/cfc23144 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/cfc23144 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/cfc23144 Branch: refs/heads/develop Commit: cfc231441a7d7cf94ba96efc58913b1c510d4c9a Parents: 3ad2ce2 Author: Christopher Collins <[email protected]> Authored: Thu Feb 16 13:25:13 2017 -0800 Committer: Christopher Collins <[email protected]> Committed: Thu Feb 16 13:25:13 2017 -0800 ---------------------------------------------------------------------- net/nimble/host/src/ble_eddystone.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/cfc23144/net/nimble/host/src/ble_eddystone.c ---------------------------------------------------------------------- diff --git a/net/nimble/host/src/ble_eddystone.c b/net/nimble/host/src/ble_eddystone.c index fa4a783..e6e15c3 100644 --- a/net/nimble/host/src/ble_eddystone.c +++ b/net/nimble/host/src/ble_eddystone.c @@ -85,7 +85,8 @@ ble_eddystone_set_adv_data_gen(struct ble_hs_adv_fields *adv_fields, return BLE_HS_EINVAL; } - ble_eddystone_uuids16[0] = (ble_uuid16_t) BLE_UUID16_INIT(BLE_EDDYSTONE_SERVICE_UUID); + ble_eddystone_uuids16[0] = + (ble_uuid16_t) BLE_UUID16_INIT(BLE_EDDYSTONE_SERVICE_UUID); memcpy(ble_eddystone_uuids16 + 1, adv_fields->uuids16, adv_fields->num_uuids16 * sizeof(ble_uuid16_t)); adv_fields->uuids16 = ble_eddystone_uuids16;
