From 031601a0c5aa944493660f991d66702cc7e52755 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Tue, 17 May 2016 23:47:13 +0200 Subject: event sender: better naming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I82d918cd14b1e368ef509fa3a1b21c3e55a6b98d Signed-off-by: José Bollo --- plugins/samples/HelloWorld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/samples') diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 35b95cab..78a1eafd 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -54,7 +54,7 @@ static void pingBug (struct afb_req request) static void pingEvent(struct afb_req request) { json_object *query = afb_req_json(request); - afb_evmgr_push(afb_daemon_get_evmgr(interface->daemon), "event", query); + afb_event_sender_push(afb_daemon_get_event_sender(interface->daemon), "event", query); ping(request, json_object_get(query), "event"); } -- cgit 1.2.3-korg