aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-07-11 21:18:37 +0200
committerMax Kellermann <max@duempel.org>2014-07-11 21:18:44 +0200
commit69bb086ba535bb9f2631240c3f1b206f807522e6 (patch)
treef83506ad11edad4cbc4dbf0c90706c68cc5bca65 /src
parent11a5ee821b99da7c58da4cb2251c8686e2d615cf (diff)
downloadmpd-69bb086ba535bb9f2631240c3f1b206f807522e6.tar.gz
mpd-69bb086ba535bb9f2631240c3f1b206f807522e6.tar.xz
mpd-69bb086ba535bb9f2631240c3f1b206f807522e6.zip
decoder/audiofile: fix typo in comment
Diffstat (limited to 'src')
-rw-r--r--src/decoder/AudiofileDecoderPlugin.cxx2
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