aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-11 21:23:30 +0100
committerMax Kellermann <max@duempel.org>2008-11-11 21:23:30 +0100
commit401e77b258ff549b71a7fcaedf152f2e4e80612c (patch)
tree8fc227532d1949fe45551ef714657673484aa456 /src/decoder_thread.c
parent0cba1ae312bb8dcf61078ce4109a9542c69cfe73 (diff)
downloadmpd-401e77b258ff549b71a7fcaedf152f2e4e80612c.tar.gz
mpd-401e77b258ff549b71a7fcaedf152f2e4e80612c.tar.xz
mpd-401e77b258ff549b71a7fcaedf152f2e4e80612c.zip
decoder: fixed typo in assertion
decoder_file_decode() should check for plugin->file_decode, not plugin->stream_decode().
Diffstat (limited to 'src/decoder_thread.c')
-rw-r--r--src/decoder_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index 28dbcaa8e..f8ed86047 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -57,7 +57,7 @@ decoder_file_decode(const struct decoder_plugin *plugin,
struct decoder *decoder, const char *path)
{
assert(plugin != NULL);
- assert(plugin->stream_decode != NULL);
+ assert(plugin->file_decode != NULL);
assert(decoder != NULL);
assert(!decoder->stream_tag_sent);
assert(path != NULL);