1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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
This commit is contained in:
Daniel Stenberg 2018-07-11 11:47:21 +02:00
parent eb8138405a
commit 1f6e38e6af
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -149,9 +149,9 @@ int main(void)
curl_multi_setopt(multi_handle, CURLMOPT_MAX_HOST_CONNECTIONS, 6L); curl_multi_setopt(multi_handle, CURLMOPT_MAX_HOST_CONNECTIONS, 6L);
/* enables http/2 if available */ /* enables http/2 if available */
#ifdef CURLPIPE_MULTIPLEX #ifdef CURLPIPE_MULTIPLEX
curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX); curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
#endif #endif
/* sets html start page */ /* sets html start page */
curl_multi_add_handle(multi_handle, make_handle(start_page)); curl_multi_add_handle(multi_handle, make_handle(start_page));