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

10-at-a-time.c: fix too long line

This commit is contained in:
Daniel Stenberg 2019-03-01 21:46:59 +01:00
parent a977d93805
commit 091cdf2795
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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)
{