mirror of
https://github.com/curl/curl.git
synced 2026-07-16 03:17:15 +03:00
test1514: Got rid of a non-const initializer C99ism
This commit is contained in:
parent
4013a2aa64
commit
6c014e4283
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ int test(char *URL)
|
|||
CURL *curl;
|
||||
CURLcode result = CURLE_OK;
|
||||
int res = 0;
|
||||
struct WriteThis pooh = { data, strlen(data) };
|
||||
struct WriteThis pooh = { data, sizeof(data)-1 };
|
||||
|
||||
global_init(CURL_GLOBAL_ALL);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue