summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2023-08-07 21:30:19 -0600
committerAndrew Morton <akpm@linux-foundation.org>2023-08-21 13:46:21 -0700
commit8e7b7ffbd40fdac5ee243f8295983ef371f715c9 (patch)
treefaaa61780a54e24ed84e1b2baeb80de86ff7ff4d /scripts
parent5b2c73341ae979fff017d8605d74601f86786eef (diff)
checkpatch: reword long-line warning about commit-msg
Reword the warning to complain about line length 1st, since thats whats actually tested. Link: https://lkml.kernel.org/r/20230808033019.21911-3-jim.cromie@gmail.com Cc: apw@canonical.com Cc: joe@perches.com Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 6aabcc1f66c1..6e789dc07420 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3272,7 +3272,7 @@ sub process {
# A Fixes:, link or signature tag line
$commit_log_possible_stack_dump)) {
WARN("COMMIT_LOG_LONG_LINE",
- "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
+ "Prefer a maximum 75 chars per line (possible unwrapped commit description?)\n" . $herecurr);
$commit_log_long_line = 1;
}