Mercurial > pidgin
changeset 17476:a88796a81413
Get rid of a compile warning
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 04 Jun 2007 04:58:44 +0000 |
parents | 9187a19d72a7 |
children | 3bcdb320e619 |
files | libpurple/protocols/oscar/flap_connection.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/flap_connection.c Mon Jun 04 04:34:28 2007 +0000 +++ b/libpurple/protocols/oscar/flap_connection.c Mon Jun 04 04:58:44 2007 +0000 @@ -902,7 +902,7 @@ ret = send(conn->fd, conn->buffer_outgoing->outptr, writelen, 0); if (ret <= 0) { - if (ret < 0 && ((errno == EAGAIN)) || ((errno == EWOULDBLOCK))) + if (ret < 0 && ((errno == EAGAIN) || (errno == EWOULDBLOCK))) /* No worries */ return;