test1514: Got rid of a non-const initializer C99ism

This commit is contained in:
Dan Fandrich 2014-01-22 01:47:53 +01:00
parent 4013a2aa64
commit 6c014e4283
1 changed files with 1 additions and 1 deletions

View File

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