diff options
-rw-r--r-- | src/DecoderControl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DecoderControl.cxx b/src/DecoderControl.cxx index f4dbe48d5..3661beaff 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); |