summaryrefslogtreecommitdiff
path: root/android/gatt.c
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2015-02-27 13:21:05 +0100
committerSzymon Janc <szymon.janc@tieto.com>2015-02-27 21:43:25 +0100
commitbc60ca0c5a56b9bedb7baca021e21be1b8ee8849 (patch)
treea0ad207c19190fd3e71f16ee8b95e1d0caad4daf /android/gatt.c
parentb48e72a939678c6fca9373c1c5d37bfa7ec66dc0 (diff)
downloadbluez-bc60ca0c5a56b9bedb7baca021e21be1b8ee8849.tar.gz
android/gatt: Fix error message in signed_write_cmd
Diffstat (limited to 'android/gatt.c')
-rw-r--r--android/gatt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/gatt.c b/android/gatt.c
index 0703e65a9..e6b075317 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -3279,7 +3279,7 @@ static guint signed_write_cmd(struct gatt_device *dev, uint16_t handle,
res = gatt_signed_write_cmd(dev->attrib, handle, value, vlen, crypto,
csrk, sign_cnt, NULL, NULL);
if (!res) {
- error("gatt: Could write signed cmd");
+ error("gatt: Signed write command failed");
return 0;
}