aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/ghiper.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-04-03 22:51:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-04-03 22:52:34 +0200
commit6ddab23fb1e27e0ea938c8ec448f620295149c9d (patch)
tree3207247960bdd4e151434c33f896bd66110f125a /docs/examples/ghiper.c
parent3d94a113e90af20b1b894dc931d4422fea405490 (diff)
docs/examples: remove spurious white spaces all over
... to please the new, slightly picker, checksrc.pl
Diffstat (limited to 'docs/examples/ghiper.c')
-rw-r--r--docs/examples/ghiper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/ghiper.c b/docs/examples/ghiper.c
index f78a943b9..7317a63d8 100644
--- a/docs/examples/ghiper.c
+++ b/docs/examples/ghiper.c
@@ -247,7 +247,7 @@ static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp)
if(!fdp) {
MSG_OUT("Adding data: %s%s\n",
what&CURL_POLL_IN?"READ":"",
- what&CURL_POLL_OUT?"WRITE":"" );
+ what&CURL_POLL_OUT?"WRITE":"");
addsock(s, e, what, g);
}
else {
@@ -279,7 +279,7 @@ static int prog_cb (void *p, double dltotal, double dlnow, double ult,
}
/* Create a new easy handle, and add it to the global curl_multi */
-static void new_conn(char *url, GlobalInfo *g )
+static void new_conn(char *url, GlobalInfo *g)
{
ConnInfo *conn;
CURLMcode rc;