mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
axtls: fix compiler warning on conversion ssize_t => int
This commit is contained in:
parent
852a018e78
commit
251305cd7f
@ -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…
Reference in New Issue
Block a user