From 54d57fdcc26cd6ada7c7ec6704ed3a106f9720ce Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 25 Jan 2020 19:24:43 +0100 Subject: [PATCH] test/DumpDecoderClient: dump the `seekable` flag --- test/DumpDecoderClient.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/DumpDecoderClient.cxx b/test/DumpDecoderClient.cxx index a876c7ad7..c0c5dd92a 100644 --- a/test/DumpDecoderClient.cxx +++ b/test/DumpDecoderClient.cxx @@ -28,15 +28,15 @@ void DumpDecoderClient::Ready(const AudioFormat audio_format, - gcc_unused bool seekable, + bool seekable, SignedSongTime duration) { assert(!initialized); assert(audio_format.IsValid()); - fprintf(stderr, "audio_format=%s duration=%f\n", + fprintf(stderr, "audio_format=%s duration=%f seekable=%d\n", ToString(audio_format).c_str(), - duration.ToDoubleS()); + duration.ToDoubleS(), seekable); initialized = true; }