From: Peter Meerwald-Stadler Date: Wed, 6 Sep 2017 09:05:29 +0000 (+0200) Subject: raop: Fix gcc-7 warnings, EWOULDBLOCK X-Git-Tag: accepted/tizen/unified/20180919.141924~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F73%2F189373%2F1;p=platform%2Fupstream%2Fpulseaudio.git raop: Fix gcc-7 warnings, EWOULDBLOCK EAGAIN is used allover the code rather than EWOULDBLOCK POSIX allows EAGAIN and EWOULDBLOCK to have the same value (and in fact it is) don't check for EWOULDBLOCK modules/raop/raop-client.c: In function ‘send_udp_audio_packet’: modules/raop/raop-client.c:473:41: warning: logical ‘or’ of equal expressions [-Wlogical-op] if (written < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { ^~ modules/raop/raop-client.c: In function ‘resend_udp_audio_packets’: modules/raop/raop-client.c:528:45: warning: logical ‘or’ of equal expressions [-Wlogical-op] if (written < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { ^~ Change-Id: Ifbad3e3cefdf66e59053853894ff51e74d19a3a4 Signed-off-by: Peter Meerwald-Stadler --- diff --git a/src/modules/raop/raop-client.c b/src/modules/raop/raop-client.c index 8fca4df..9ed8e3a 100644 --- a/src/modules/raop/raop-client.c +++ b/src/modules/raop/raop-client.c @@ -470,7 +470,7 @@ static ssize_t send_udp_audio_packet(pa_raop_client *c, pa_memchunk *block, size buffer += packet->index; if (buffer && packet->length > 0) written = pa_write(c->udp_sfd, buffer, packet->length, NULL); - if (written < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { + if (written < 0 && errno == EAGAIN) { pa_log_debug("Discarding UDP (audio, seq=%d) packet due to EAGAIN (%s)", c->seq, pa_cstrerror(errno)); written = packet->length; } @@ -525,7 +525,7 @@ static ssize_t resend_udp_audio_packets(pa_raop_client *c, uint16_t seq, uint16_ if (buffer && packet->length > 0) written = pa_write(c->udp_cfd, buffer, packet->length, NULL); - if (written < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { + if (written < 0 && errno == EAGAIN) { pa_log_debug("Discarding UDP (audio-restransmitted, seq=%d) packet due to EAGAIN", seq + i); pa_memblock_release(packet->memblock); continue; diff --git a/src/pulsecore/iochannel.c b/src/pulsecore/iochannel.c index 8973375..e25824b 100644 --- a/src/pulsecore/iochannel.c +++ b/src/pulsecore/iochannel.c @@ -227,7 +227,7 @@ ssize_t pa_iochannel_write(pa_iochannel*io, const void*data, size_t l) { return r; /* Fast path - we almost always successfully write everything */ if (r < 0) { - if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) + if (errno == EINTR || errno == EAGAIN) r = 0; else return r;