diff mbox series

[FFmpeg-devel,1/2] avfilter/vf_showinfo: remove superfluous line break

Message ID 20230111173517.38039-1-jamrial@gmail.com
State New
Headers show
Series [FFmpeg-devel,1/2] avfilter/vf_showinfo: remove superfluous line break | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

James Almer Jan. 11, 2023, 5:35 p.m. UTC
It's added generically after the switch statement.

Signed-off-by: James Almer <jamrial@gmail.com>
---
 libavfilter/vf_showinfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c
index 9b4a9fc981..377ac6e413 100644
--- a/libavfilter/vf_showinfo.c
+++ b/libavfilter/vf_showinfo.c
@@ -812,7 +812,7 @@  static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
             break;
         default:
             av_log(ctx, AV_LOG_WARNING, "unknown side data type %d "
-                   "(%"SIZE_SPECIFIER" bytes)\n", sd->type, sd->size);
+                   "(%"SIZE_SPECIFIER" bytes)", sd->type, sd->size);
             break;
         }