From: Viktor Szakats Date: Mon, 13 Oct 2025 11:44:23 +0000 (+0200) Subject: checksrc: allow disabling warnings on FIXME/TODO comments X-Git-Tag: rc-8_17_0-2~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=497b3f022e9031eaa134697a5f5542b9d5ea3611;p=thirdparty%2Fcurl.git checksrc: allow disabling warnings on FIXME/TODO comments Follow-up to 71ace9f3c16a434385fc27b3e8bffb52deb6ccd1 Closes #19048 --- diff --git a/scripts/checksrc.pl b/scripts/checksrc.pl index c424924e45..7059d68575 100755 --- a/scripts/checksrc.pl +++ b/scripts/checksrc.pl @@ -134,6 +134,7 @@ my %warnings = ( 'EQUALSNULL' => 'if/while comparison with == NULL', 'ERRNOVAR' => 'use of bare errno define', 'EXCLAMATIONSPACE' => 'Whitespace after exclamation mark in expression', + 'FIXME' => 'FIXME or TODO comment', 'FOPENMODE' => 'fopen needs a macro for the mode string', 'INCLUDEDUP', => 'same file is included again', 'INDENTATION' => 'wrong start column for code',