lib: add const to clientwriter tables

Unlike the connection filter tables that hold a writable log level, the
client writer tables can be const.
This commit is contained in:
Dan Fandrich 2025-04-03 12:42:06 -07:00
parent 34cdd4e118
commit 9f4f61ddcb
4 changed files with 4 additions and 4 deletions

View file

@ -87,7 +87,7 @@ static void cw_pause_close(struct Curl_easy *data,
static CURLcode cw_pause_init(struct Curl_easy *data,
struct Curl_cwriter *writer);
struct Curl_cwtype Curl_cwt_pause = {
const struct Curl_cwtype Curl_cwt_pause = {
"cw-pause",
NULL,
cw_pause_init,