From 0560afe5c1f88c30fe9f6409ed8587a90417846c Mon Sep 17 00:00:00 2001 From: Vigneshwarr Date: Thu, 16 Jul 2026 22:30:53 -0700 Subject: [PATCH] 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 --- docs/libcurl/opts/CURLINFO_PAUSE_STATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/libcurl/opts/CURLINFO_PAUSE_STATE.md b/docs/libcurl/opts/CURLINFO_PAUSE_STATE.md index 5b2102b9ab..547b17a97a 100644 --- a/docs/libcurl/opts/CURLINFO_PAUSE_STATE.md +++ b/docs/libcurl/opts/CURLINFO_PAUSE_STATE.md @@ -22,7 +22,7 @@ CURLINFO_PAUSE_STATE - get the current pause state #include CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_PAUSE_STATE, - long *bitmask); + unsigned int *bitmask); ~~~ # DESCRIPTION