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

@ -32,7 +32,7 @@
* The client writer type "cw-pause" that buffers writes for
* paused transfer writes.
*/
extern struct Curl_cwtype Curl_cwt_pause;
extern const struct Curl_cwtype Curl_cwt_pause;
CURLcode Curl_cw_pause_flush(struct Curl_easy *data);