mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
smtp: Fix compilation warning
comparison between signed and unsigned integer expressions
This commit is contained in:
parent
7632bc911b
commit
f3d10aa0d4
@ -1457,7 +1457,7 @@ static CURLcode smtp_done(struct connectdata *conn, CURLcode status,
|
|||||||
struct SMTP *smtp = data->state.proto.smtp;
|
struct SMTP *smtp = data->state.proto.smtp;
|
||||||
struct pingpong *pp = &conn->proto.smtpc.pp;
|
struct pingpong *pp = &conn->proto.smtpc.pp;
|
||||||
const char *eob;
|
const char *eob;
|
||||||
size_t len;
|
ssize_t len;
|
||||||
ssize_t bytes_written;
|
ssize_t bytes_written;
|
||||||
|
|
||||||
(void)premature;
|
(void)premature;
|
||||||
|
Loading…
Reference in New Issue
Block a user