From 68f7df1a50ca9dcef7cd97857794d13c0a448b8c Mon Sep 17 00:00:00 2001
From: Pawel Wasowski
Date: Tue, 7 Mar 2017 11:30:43 +0100
Subject: [PATCH] [Bluetooth] Fix typo in log message format string
[Verification] Proper log message appears in sdb dlog.
Change-Id: I43ea562f1e90034097f97c2c3a348284112b5f44
Signed-off-by: Pawel Wasowski
---
src/bluetooth/bluetooth_gatt_service.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bluetooth/bluetooth_gatt_service.cc b/src/bluetooth/bluetooth_gatt_service.cc
index 1171038e..98d0b53c 100755
--- a/src/bluetooth/bluetooth_gatt_service.cc
+++ b/src/bluetooth/bluetooth_gatt_service.cc
@@ -576,7 +576,7 @@ common::PlatformResult BluetoothGATTService::GetServiceAllUuids(
void BluetoothGATTService::OnCharacteristicValueChanged(
bt_gatt_h characteristic, char* value, int length, void* user_data) {
- LoggerD("Entered, characteristic: [%p], len: [d], user_data: [%p]", characteristic, length, user_data);
+ LoggerD("Entered, characteristic: [%p], len: [%d], user_data: [%p]", characteristic, length, user_data);
auto service = static_cast(user_data);
--
2.34.1