checkstyle9.pl: Soften the single line braces requirement

We inherited the error for single line statements needing braces from
the original script. Style(9) allow that, and could be read to encourage
that, but does not require that.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-01-15 14:48:01 -07:00
parent 11500481c8
commit 57623b3b74

View file

@ -2546,7 +2546,7 @@ sub process {
$herectx .= raw_line($linenr, $n) . "\n";;
}
ERROR("braces {} are necessary even for single statement blocks\n" . $herectx);
WARN("braces {} are encouraged even for single statement blocks\n" . $herectx);
}
}