From 7a814f5786620a295d0e16d9f27698d3897cb53d Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Mon, 13 May 2019 23:14:12 +0200 Subject: [PATCH] less lies, more truth. --- examples/async-curl/src/http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/async-curl/src/http.c b/examples/async-curl/src/http.c index f7621a7..f88c3b3 100644 --- a/examples/async-curl/src/http.c +++ b/examples/async-curl/src/http.c @@ -80,12 +80,13 @@ state_setup(struct http_request *req) /* * Bind the HTTP client request to our HTTP request so we get woken * up once a response is available. + * + * This will put us to sleep. */ kore_curl_bind_request(client, req); /* * Now fire off the request onto the event loop. - * This will put us to sleep. */ kore_curl_run(client);