fwknop: init script improvements
[feed/packages.git] / sound / mpd / patches / 040-fix-aiff-and-amr.patch
1 From d5341ccfe1a29f8d88c279d246ddd4e0b53fbecc Mon Sep 17 00:00:00 2001
2 From: Rosen Penev <rosenp@gmail.com>
3 Date: Sun, 2 Feb 2020 16:08:36 -0800
4 Subject: [PATCH] [clang-tidy] add missing comma
5
6 Found with bugprone-suspicious-missing-comma
7
8 Signed-off-by: Rosen Penev <rosenp@gmail.com>
9 ---
10 src/decoder/plugins/FfmpegDecoderPlugin.cxx | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/src/decoder/plugins/FfmpegDecoderPlugin.cxx b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
14 index 6be0448b9..2bc1fb4ae 100644
15 --- a/src/decoder/plugins/FfmpegDecoderPlugin.cxx
16 +++ b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
17 @@ -762,7 +762,7 @@ static const char *const ffmpeg_mime_types[] = {
18 "audio/aac",
19 "audio/aacp",
20 "audio/ac3",
21 - "audio/aiff"
22 + "audio/aiff",
23 "audio/amr",
24 "audio/basic",
25 "audio/flac",
26 --
27 2.24.1
28