From cf02b9c5df7ca4ea237d6c92bd975d8f3f98a4a1 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 9 Aug 2018 16:43:10 +0200 Subject: [PATCH] checkpatch.pl: complain about space in elvis operator ?: --- contrib/scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/scripts/checkpatch.pl b/contrib/scripts/checkpatch.pl index 6ef8b2559..f06ac7fc0 100755 --- a/contrib/scripts/checkpatch.pl +++ b/contrib/scripts/checkpatch.pl @@ -129,6 +129,7 @@ complain ('Don\'t use glib typedefs for char/short/int/long/float/double') if $l complain ("Don't use \"$1 $2\" instead of \"$2 $1\"") if $line =~ /\b(char|short|int|long) +(unsigned|signed)\b/; complain ("Don't use \"unsigned int\" but just use \"unsigned\"") if $line =~ /\b(unsigned) +(int)\b/; complain ("Please use LGPL2+ for new files") if $is_patch and $line =~ /under the terms of the GNU General Public License/; +complain ("Don't use space inside elvis operator ?:") if $line =~ /\?[\t ]+:/; # Further on we process stuff without comments. $_ = $line;