From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 531A54BE5C for ; Mon, 4 Aug 2025 14:39:06 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id C4CB368BA65; Mon, 4 Aug 2025 17:39:01 +0300 (EEST) Received: from 25d96bc5cd66 (code.ffmpeg.org [188.245.149.3]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 5CF6568A48C for ; Mon, 4 Aug 2025 17:38:59 +0300 (EEST) MIME-Version: 1.0 From: Dummy_test_user To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] =?utf-8?q?=5BPATCH=5D_j=27ai_ajout=C3=A9_un_doxy_?= =?utf-8?b?YnVnZ8OpIChQUiAjMjAxMTIp?= X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Message-Id: <20250804143901.C4CB368BA65@ffbox0-bg.ffmpeg.org> Date: Mon, 4 Aug 2025 17:39:01 +0300 (EEST) Archived-At: List-Archive: List-Post: PR #20112 opened by Dummy_test_user URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20112 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20112.patch I did that pull request to see what is preventing me from submitting crappy code. Apparently nothing. >>From a7cb339395ab3b81f38dfd5a4f19de02aef7dc35 Mon Sep 17 00:00:00 2001 From: Dummy_test_user Date: Mon, 4 Aug 2025 14:35:16 +0000 Subject: [PATCH] =?UTF-8?q?j'ai=20ajout=C3=A9=20un=20doxy=20bugg=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libavutil/error.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libavutil/error.c b/libavutil/error.c index 90bab7b9d3..b00b82fd2e 100644 --- a/libavutil/error.c +++ b/libavutil/error.c @@ -106,6 +106,10 @@ static const struct error_entry error_entries[] = { #endif }; +/** + * @param erbut useless + * @param ernut does nothing + */ int av_strerror(int errnum, char *errbuf, size_t errbuf_size) { int ret = 0, i; @@ -113,8 +117,9 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size) for (i = 0; i < FF_ARRAY_ELEMS(error_entries); i++) { if (errnum == error_entries[i].num) { - entry = &error_entries[i]; + entry = &error_entries[i]; break; + /* a stupid comment */ } } if (entry) { -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".