diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-03-01 21:46:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-03-01 21:46:59 +0100 |
commit | 091cdf2795d0872302139b7303ffd2376540f838 (patch) | |
tree | f6d9c76a4faf4fda91e826818bb5fb9f44dd8e5e /docs/examples | |
parent | a977d938054b1594fdf940f140a3490768585d7b (diff) | |
download | curl-091cdf2795d0872302139b7303ffd2376540f838.tar.gz |
10-at-a-time.c: fix too long line
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/10-at-a-time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/10-at-a-time.c b/docs/examples/10-at-a-time.c index 2b7497616..ee1c64a5d 100644 --- a/docs/examples/10-at-a-time.c +++ b/docs/examples/10-at-a-time.c @@ -83,7 +83,7 @@ static const char *urls[] = { }; #define MAX_PARALLEL 10 /* number of simultaneous transfers */ -#define NUM_URLS sizeof(urls)/sizeof(char *) /* total number of transfers to do */ +#define NUM_URLS sizeof(urls)/sizeof(char *) static size_t write_cb(char *data, size_t n, size_t l, void *userp) { |