Additionally pluralize 'arguments' in SC2183

This commit is contained in:
Vidar Holen 2022-07-23 15:38:42 -07:00
parent 81d9f7e640
commit ea4e0091c7
1 changed files with 2 additions and 2 deletions

View File

@ -706,8 +706,8 @@ checkPrintfVar = CommandCheck (Exactly "printf") (f . arguments) where
return () -- Great: a suitable number of arguments
| otherwise ->
warn (getId format) 2183 $
"This format string has " ++ show formatCount ++ " " ++ (pluraliseIfMany "variable" formatCount) ++
", but is passed " ++ show argCount ++ " arguments."
"This format string has " ++ show formatCount ++ " " ++ pluraliseIfMany "variable" formatCount ++
", but is passed " ++ show argCount ++ pluraliseIfMany " argument" argCount ++ "."
unless ('%' `elem` concat (oversimplify format) || isLiteral format) $
info (getId format) 2059