From bc1999e217069f6f8c53deb55e689795b0f43799 Mon Sep 17 00:00:00 2001 From: 11soda11 <115734183+Sodastream11@users.noreply.github.com> Date: Wed, 29 Jul 2026 00:29:55 +0200 Subject: [PATCH] checksrc fix --- src/tool_doswin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tool_doswin.c b/src/tool_doswin.c index c195742e3a..0a81692cd0 100644 --- a/src/tool_doswin.c +++ b/src/tool_doswin.c @@ -798,7 +798,8 @@ static int read_auth_val(curl_socket_t sock, uint64_t* buf) size_t nread = 0; do { - ssize_t ret = sread(sock, (unsigned char*)buf + nread, sizeof(*buf) - nread); + ssize_t ret = sread(sock, (unsigned char *)buf + nread, + sizeof(*buf) - nread); if(ret <= 0) { if(!ret) errorf("stdin relay peer disconnected");