raop: Fix typo

Signed-off-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
This commit is contained in:
Peter Meerwald-Stadler 2017-09-06 11:12:26 +02:00
parent a39098fe4d
commit 0f94657cd0

View file

@ -526,7 +526,7 @@ static ssize_t resend_udp_audio_packets(pa_raop_client *c, uint16_t seq, uint16_
if (buffer && packet->length > 0) if (buffer && packet->length > 0)
written = pa_write(c->udp_cfd, buffer, packet->length, NULL); written = pa_write(c->udp_cfd, buffer, packet->length, NULL);
if (written < 0 && errno == EAGAIN) { if (written < 0 && errno == EAGAIN) {
pa_log_debug("Discarding UDP (audio-restransmitted, seq=%d) packet due to EAGAIN", seq + i); pa_log_debug("Discarding UDP (audio-retransmitted, seq=%d) packet due to EAGAIN", seq + i);
pa_memblock_release(packet->memblock); pa_memblock_release(packet->memblock);
continue; continue;
} }