mirror of
https://github.com/curl/curl.git
synced 2026-07-30 13:28:27 +03:00
tests: tidy up types in server code
Cherry-picked from #13489 Closes #13610
This commit is contained in:
parent
7333faf00b
commit
0c49ea4ff2
7 changed files with 29 additions and 29 deletions
|
|
@ -147,7 +147,7 @@ static const char *win32_strerror(int err, char *buf, size_t buflen)
|
|||
void win32_perror(const char *msg)
|
||||
{
|
||||
char buf[512];
|
||||
DWORD err = SOCKERRNO;
|
||||
int err = SOCKERRNO;
|
||||
win32_strerror(err, buf, sizeof(buf));
|
||||
if(msg)
|
||||
fprintf(stderr, "%s: ", msg);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue