From 1f6e38e6af73b6b11e1a7e4032cfd056d1000e70 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 11 Jul 2018 11:47:21 +0200 Subject: examples/crawler.c: move #ifdef to column 0 Apparently the C => HTML converter on the web site doesn't quite like it otherwise. Reported-by: Jeroen Ooms --- docs/examples/crawler.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/examples/crawler.c b/docs/examples/crawler.c index 47c427473..0aeb86545 100644 --- a/docs/examples/crawler.c +++ b/docs/examples/crawler.c @@ -149,9 +149,9 @@ int main(void) curl_multi_setopt(multi_handle, CURLMOPT_MAX_HOST_CONNECTIONS, 6L); /* enables http/2 if available */ - #ifdef CURLPIPE_MULTIPLEX - curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX); - #endif +#ifdef CURLPIPE_MULTIPLEX + curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX); +#endif /* sets html start page */ curl_multi_add_handle(multi_handle, make_handle(start_page)); -- cgit v1.2.1