From 3548af39045de2f8be1be9f42b0e0a064eb71d9c Mon Sep 17 00:00:00 2001 From: Pekka Vuorela Date: Tue, 30 Jan 2018 11:23:08 +0200 Subject: Fix expected signature from Connman Scan method Resulted in errors on app startup: Unexpected reply signature: got \"\", expected \"a{sv}\" Connman technology interface documents Scan as void, results gotten with other api. Change-Id: I6f2961685af7e1ef0559e1b6d89245231404899c Reviewed-by: Lorn Potter --- src/plugins/bearer/connman/qconnmanservice_linux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/bearer/connman/qconnmanservice_linux.cpp b/src/plugins/bearer/connman/qconnmanservice_linux.cpp index 55eec57270..1f02ba948e 100644 --- a/src/plugins/bearer/connman/qconnmanservice_linux.cpp +++ b/src/plugins/bearer/connman/qconnmanservice_linux.cpp @@ -506,7 +506,7 @@ void QConnmanTechnologyInterface::scan() void QConnmanTechnologyInterface::scanReply(QDBusPendingCallWatcher *call) { - QDBusPendingReply props_reply = *call; + QDBusPendingReply props_reply = *call; if (props_reply.isError()) { qDebug() << props_reply.error().message(); } -- cgit v1.2.3