summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <[email protected]>2024-03-23 13:04:23 +0100
committerAndreas Rheinhardt <[email protected]>2024-03-26 06:30:45 +0100
commita6189ba896b207c40007704a1aec7ef68a8eb50b (patch)
treee4edfbd90c8b6821faa75bf8383639a7005456d2
parent5eda98f382103be8bc626fa36408b51a996b6518 (diff)
avcodec/mpegutils: Simplify indenting
Signed-off-by: Andreas Rheinhardt <[email protected]>
-rw-r--r--libavcodec/mpegutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegutils.c b/libavcodec/mpegutils.c
index 7f499b3d0f..d94e8f422f 100644
--- a/libavcodec/mpegutils.c
+++ b/libavcodec/mpegutils.c
@@ -265,7 +265,7 @@ void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict,
margin_left++;
av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
- av_bprintf(&buf, "%*s", margin_left, " ");
+ av_bprint_chars(&buf, ' ', margin_left);
n = 0;
if (avctx->debug & FF_DEBUG_SKIP)