diff options
author | Fabian Frank <fabian@pagefault.de> | 2014-01-20 15:53:44 -0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-01-21 08:21:55 +0100 |
commit | 251305cd7f952ee7800fba7e81091baedc7ffcde (patch) | |
tree | 41476584e89ce75d980b8d7e93c6060b440ddcf3 /lib/vtls | |
parent | 852a018e78c4976e3cf07212e8022546edb2c120 (diff) |
axtls: fix compiler warning on conversion ssize_t => int
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/axtls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/axtls.c b/lib/vtls/axtls.c index 7db7eb1af..d5d6db2ff 100644 --- a/lib/vtls/axtls.c +++ b/lib/vtls/axtls.c @@ -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; } } |