CURLOPT_POSTFIELDSIZE.md whitespace

This commit is contained in:
Viktor Szakats 2025-08-01 13:44:20 +02:00
parent f387fd59d7
commit a955af7d07
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -54,7 +54,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
/* size of the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) strlen(data));
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(data));
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);