diff options
Diffstat (limited to 'tools/checkpatch.pl')
-rwxr-xr-x | tools/checkpatch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkpatch.pl b/tools/checkpatch.pl index c0624d933..cf15d0079 100755 --- a/tools/checkpatch.pl +++ b/tools/checkpatch.pl @@ -5300,8 +5300,8 @@ sub process { # uncoalesced string fragments if ($line =~ /$String\s*"/) { - WARN("STRING_FRAGMENTS", - "Consecutive strings are generally better as a single string\n" . $herecurr); + CHK("STRING_FRAGMENTS", + "Consecutive strings are generally better as a single string\n" . $herecurr); } # check for non-standard and hex prefixed decimal printf formats |