From: Pawel Wasowski
Date: Tue, 7 Mar 2017 10:30:43 +0000 (+0100)
Subject: [Bluetooth] Fix typo in log message format string
X-Git-Tag: submit/tizen_3.0/20170308.104234~2^2
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68f7df1a50ca9dcef7cd97857794d13c0a448b8c;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git
[Bluetooth] Fix typo in log message format string
[Verification] Proper log message appears in sdb dlog.
Change-Id: I43ea562f1e90034097f97c2c3a348284112b5f44
Signed-off-by: Pawel Wasowski
---
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);