From dd39a671019d713bd077be9eed511c2dc6013598 Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Sat, 13 Jun 2015 23:25:07 -0400 Subject: [PATCH] curl_multi_info_read.3: fix example formatting --- docs/libcurl/curl_multi_info_read.3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/libcurl/curl_multi_info_read.3 b/docs/libcurl/curl_multi_info_read.3 index bdf89863fc04e8..03be341b274cf5 100644 --- a/docs/libcurl/curl_multi_info_read.3 +++ b/docs/libcurl/curl_multi_info_read.3 @@ -69,6 +69,7 @@ that just completed. At this point, there are no other \fBmsg\fP types defined. .SH EXAMPLE +.nf struct CURLMsg *m; /* call curl_multi_perform or curl_multi_socket_action first, then loop @@ -84,7 +85,7 @@ do { curl_easy_cleanup(e); } } while(m); - +.fi .SH "RETURN VALUE" A pointer to a filled-in struct, or NULL if it failed or ran out of structs. It also writes the number of messages left in the queue (after this