diff options
author | Max Kellermann <max@duempel.org> | 2014-07-11 21:18:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-11 21:18:44 +0200 |
commit | 69bb086ba535bb9f2631240c3f1b206f807522e6 (patch) | |
tree | f83506ad11edad4cbc4dbf0c90706c68cc5bca65 /src/decoder | |
parent | 11a5ee821b99da7c58da4cb2251c8686e2d615cf (diff) |
decoder/audiofile: fix typo in comment
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/AudiofileDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/AudiofileDecoderPlugin.cxx b/src/decoder/AudiofileDecoderPlugin.cxx index 3fb23bc20..ae76a4302 100644 --- a/src/decoder/AudiofileDecoderPlugin.cxx +++ b/src/decoder/AudiofileDecoderPlugin.cxx @@ -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 |