From dc2e64c92b5a61f4c578b5d4c6017b0d5b8037ff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 23 Jan 2013 18:02:40 +0100 Subject: DecoderControl: fix typo in assertion check --- src/DecoderControl.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/DecoderControl.cxx') diff --git a/src/DecoderControl.cxx b/src/DecoderControl.cxx index f4dbe48d..3661beaf 100644 --- a/src/DecoderControl.cxx +++ b/src/DecoderControl.cxx @@ -113,9 +113,9 @@ decoder_control::Start(struct song *_song, music_buffer *_buffer, music_pipe *_pipe) { assert(_song != NULL); - assert(buffer != NULL); - assert(pipe != NULL); - assert(music_pipe_empty(pipe)); + assert(_buffer != NULL); + assert(_pipe != NULL); + assert(music_pipe_empty(_pipe)); if (song != nullptr) song_free(song); -- cgit v1.2.3