From 6b8ca514bb3f327b3f23ffe4730657a93de53035 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 2 Aug 2019 22:58:05 +0200 Subject: [PATCH] decoder/mad: fix broken log message Broken since commit f8bfea8bae44134e8002db869fd4ec137d1c0d6e --- src/decoder/plugins/MadDecoderPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/plugins/MadDecoderPlugin.cxx b/src/decoder/plugins/MadDecoderPlugin.cxx index 3acb4fcb4..0facfc0ec 100644 --- a/src/decoder/plugins/MadDecoderPlugin.cxx +++ b/src/decoder/plugins/MadDecoderPlugin.cxx @@ -969,7 +969,7 @@ mad_decode(DecoderClient &client, InputStream &input_stream) if (!data.DecodeFirstFrame(&tag)) { if (client.GetCommand() == DecoderCommand::NONE) LogError(mad_domain, - "input/Input does not appear to be a mp3 bit stream"); + "input does not appear to be a mp3 bit stream"); return; }