From: Ambrose Li Date: Tue, 14 May 2024 08:44:58 +0000 (-0400) Subject: minor typo X-Git-Tag: 4.3.4-dev~5^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1851%2Fhead;p=thirdparty%2Fshairport-sync.git minor typo --- diff --git a/audio_pa.c b/audio_pa.c index 4f963c7f..56c51e93 100644 --- a/audio_pa.c +++ b/audio_pa.c @@ -399,7 +399,7 @@ void stream_write_cb(pa_stream *stream, size_t requested_bytes, ret = pa_stream_begin_write(stream, (void **)&buffer, &bytes_we_can_transfer); if ((ret == 0) && (buffer != NULL)) { if (bytes_we_can_transfer <= (size_t)(audio_umb - audio_toq)) { - // the bytes are all in a row in the audo buffer + // the bytes are all in a row in the audio buffer memcpy(buffer, audio_toq, bytes_we_can_transfer); audio_toq += bytes_we_can_transfer; ret = pa_stream_write(stream, buffer, bytes_we_can_transfer, NULL, 0LL, PA_SEEK_RELATIVE);