Update docs/libcurl/opts/CURLINFO_PAUSE_STATE.md

Thanks for the review. That makes sense. A pause-state bitmask doesn't need `long`, and `unsigned int` avoids platform size differences and negative values. I'll apply the suggestion

Co-authored-by: Daniel Stenberg <daniel@haxx.se>
This commit is contained in:
Vigneshwarr 2026-07-16 22:30:53 -07:00 committed by Vignesh
parent a972d164ed
commit 0560afe5c1

View file

@ -22,7 +22,7 @@ CURLINFO_PAUSE_STATE - get the current pause state
#include <curl/curl.h>
CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_PAUSE_STATE,
long *bitmask);
unsigned int *bitmask);
~~~
# DESCRIPTION