tidy-up: whitespace

Cherry-picked from #17877
Cherry-picked from #17876

Closes #17896
This commit is contained in:
Viktor Szakats 2025-07-08 13:59:32 +02:00
parent 202f0752ea
commit 8eab2b7086
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
70 changed files with 405 additions and 415 deletions

View file

@ -342,7 +342,7 @@ static CURLcode gzip_do_write(struct Curl_easy *data,
}
static void gzip_do_close(struct Curl_easy *data,
struct Curl_cwriter *writer)
struct Curl_cwriter *writer)
{
struct zlib_writer *zp = (struct zlib_writer *) writer;
z_stream *z = &zp->z; /* zlib state structure */
@ -463,7 +463,7 @@ static CURLcode brotli_do_write(struct Curl_easy *data,
}
static void brotli_do_close(struct Curl_easy *data,
struct Curl_cwriter *writer)
struct Curl_cwriter *writer)
{
struct brotli_writer *bp = (struct brotli_writer *) writer;
(void) data;
@ -566,7 +566,7 @@ static CURLcode zstd_do_write(struct Curl_easy *data,
}
static void zstd_do_close(struct Curl_easy *data,
struct Curl_cwriter *writer)
struct Curl_cwriter *writer)
{
struct zstd_writer *zp = (struct zstd_writer *) writer;
(void)data;
@ -687,7 +687,7 @@ static CURLcode error_do_write(struct Curl_easy *data,
}
static void error_do_close(struct Curl_easy *data,
struct Curl_cwriter *writer)
struct Curl_cwriter *writer)
{
(void) data;
(void) writer;