From 1c358b92743006dd3734fe9634855376cb037bb7 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 12 Jul 2017 11:09:18 +0300 Subject: [PATCH] client: Fix error when AcquireNotify fails It should print "Failed to AcquireNotify". --- client/gatt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gatt.c b/client/gatt.c index 33e8936ea..bd6e6b0af 100644 --- a/client/gatt.c +++ b/client/gatt.c @@ -813,7 +813,7 @@ static void acquire_notify_reply(DBusMessage *message, void *user_data) if ((dbus_message_get_args(message, NULL, DBUS_TYPE_UNIX_FD, &fd, DBUS_TYPE_UINT16, ¬ify_mtu, DBUS_TYPE_INVALID) == false)) { - rl_printf("Invalid AcquireWrite response\n"); + rl_printf("Invalid AcquireNotify response\n"); return; } -- 2.47.3