From 2cb7b3a0321a7eced58b20ba79d56862c3c4356e Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 19 Oct 2015 10:44:10 +0300 Subject: [PATCH] core/gatt: Fix logging invalid device address This fix extra ':' at the end of device address if service interface cannot be registered. --- src/gatt-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gatt-client.c b/src/gatt-client.c index c6885675c..4e52c5ddc 100644 --- a/src/gatt-client.c +++ b/src/gatt-client.c @@ -1527,7 +1527,7 @@ static struct service *service_create(struct gatt_db_attribute *attr, service_properties, service, service_free)) { error("Unable to register GATT service with handle 0x%04x for " - "device %s:", + "device %s", service->start_handle, client->devaddr); service_free(service); -- 2.47.3