comparison libpurple/protocols/oscar/flap_connection.c @ 17476:a88796a81413

Get rid of a compile warning
author Mark Doliner <mark@kingant.net>
date Mon, 04 Jun 2007 04:58:44 +0000
parents 648551e3243a
children a244c34ce59c
comparison
equal deleted inserted replaced
17475:9187a19d72a7 17476:a88796a81413
900 } 900 }
901 901
902 ret = send(conn->fd, conn->buffer_outgoing->outptr, writelen, 0); 902 ret = send(conn->fd, conn->buffer_outgoing->outptr, writelen, 0);
903 if (ret <= 0) 903 if (ret <= 0)
904 { 904 {
905 if (ret < 0 && ((errno == EAGAIN)) || ((errno == EWOULDBLOCK))) 905 if (ret < 0 && ((errno == EAGAIN) || (errno == EWOULDBLOCK)))
906 /* No worries */ 906 /* No worries */
907 return; 907 return;
908 908
909 /* Error! */ 909 /* Error! */
910 purple_input_remove(conn->watcher_outgoing); 910 purple_input_remove(conn->watcher_outgoing);