mirror of
https://github.com/curl/curl.git
synced 2026-04-28 20:02:13 +03:00
axtls: fix compiler warning on conversion ssize_t => int
This commit is contained in:
parent
852a018e78
commit
251305cd7f
1 changed files with 1 additions and 1 deletions
|
|
@ -622,7 +622,7 @@ static ssize_t axtls_recv(struct connectdata *conn, /* connection data */
|
|||
}
|
||||
else {
|
||||
failf(conn->data, "axTLS recv error (%d)", ret);
|
||||
*err = map_error_to_curl(ret);
|
||||
*err = map_error_to_curl((int) ret);
|
||||
ret = -1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue