From 8bde1d724292343addf3b3ee246bda2a0ba8020a Mon Sep 17 00:00:00 2001 From: Roker Date: Mon, 17 Dec 2018 09:13:55 +0100 Subject: [PATCH] Follow Engine's API change in test_adapter, too. LAS-2: Follow Engine's API change in test_adapter. --- test_adapter.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_adapter.cc b/test_adapter.cc index 4753f2a..37f1c6b 100644 --- a/test_adapter.cc +++ b/test_adapter.cc @@ -12,13 +12,13 @@ using namespace pEp::Adapter; PEP_STATUS messageToSend(struct _message *msg) { - cout << "calling messageToSend();\n"; + cout << "calling messageToSend();\n"; return PEP_STATUS_OK; } -PEP_STATUS notifyHandshake(void *obj, pEp_identity *me, pEp_identity *partner, sync_handshake_signal signal) +PEP_STATUS notifyHandshake(pEp_identity *me, pEp_identity *partner, sync_handshake_signal signal) { - cout << "calling notifyHandshake();\n"; + cout << "calling notifyHandshake();\n"; return PEP_STATUS_OK; }