diff options
Diffstat (limited to 'src/test_libFLAC++/decoders.cpp')
-rw-r--r-- | src/test_libFLAC++/decoders.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_libFLAC++/decoders.cpp b/src/test_libFLAC++/decoders.cpp index e397af0b..938c60b1 100644 --- a/src/test_libFLAC++/decoders.cpp +++ b/src/test_libFLAC++/decoders.cpp @@ -718,7 +718,7 @@ static bool test_stream_decoder(Layer layer, bool is_ogg) printf("testing finish()... "); if(!decoder->finish()) { - FLAC::Decoder::Stream::State state = decoder->get_state(); + state = decoder->get_state(); printf("FAILED, returned false, state = %u (%s)\n", (unsigned)((::FLAC__StreamDecoderState)state), state.as_cstring()); return false; } |