From ec312ee6fe5eecc79e9212ee93de332d99bc3f4c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 18 May 2020 10:38:41 +0200 Subject: [PATCH] tevent: Fix a tevent tutorial error We don't pass a tevent_req but a tevent_context to the _send function Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Tue May 19 12:07:42 UTC 2020 on sn-devel-184 --- lib/tevent/tevent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h index 3c3e3cc2cef..dc68a1d3f69 100644 --- a/lib/tevent/tevent.h +++ b/lib/tevent/tevent.h @@ -669,7 +669,7 @@ void tevent_get_trace_callback(struct tevent_context *ev, * * @code * struct tevent_req *computation_send(TALLOC_CTX *mem_ctx, - * struct tevent_req *ev, + * struct tevent_context *ev, * ... further args); * int computation_recv(struct tevent_req *req, ... further output args); * @endcode -- 2.47.3