From a381e9e26955cd6b2d105cf0f3bcb3b61997febe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomas=20H=C3=A4rdin?= Date: Tue, 18 Feb 2025 16:45:59 +0100 Subject: [PATCH 2/3] lavu/dict: Indent --- libavutil/dict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavutil/dict.c b/libavutil/dict.c index 067107b7cd..e53ab4e554 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -241,9 +241,9 @@ int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags) while ((t = av_dict_iterate(src, t))) { // do not copy info: keys unless explicitly told to do so if ((flags & AV_DICT_COPY_INFO) || strncmp(t->key, "info:", 5)) { - int ret = av_dict_set(dst, t->key, t->value, flags); - if (ret < 0) - return ret; + int ret = av_dict_set(dst, t->key, t->value, flags); + if (ret < 0) + return ret; } } -- 2.39.5