mirror of
https://github.com/curl/curl.git
synced 2026-08-24 22:13:33 +03:00
smtp: Fix compilation warning
comparison between signed and unsigned integer expressions
This commit is contained in:
parent
7632bc911b
commit
f3d10aa0d4
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue