decoder/audiofile: fix typo in comment

This commit is contained in:
Max Kellermann 2014-07-11 21:18:37 +02:00
parent 11a5ee821b
commit 69bb086ba5

View File

@ -44,7 +44,7 @@ struct AudioFileInputStream {
size_t Read(void *buffer, size_t size) {
/* libaudiofile does not like partial reads at all,
and wil abort playback; therefore always force full
and will abort playback; therefore always force full
reads */
return decoder_read_full(decoder, is, buffer, size)
? size