Unverified Commit 091cdf27 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent a977d938
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
{