Skip to content
Snippets Groups Projects
Commit a10c9ede authored by Jiangshan Yi's avatar Jiangshan Yi Committed by akpm
Browse files

lib/lzo/lzo1x_compress.c: replace ternary operator with min() and min_t()

Fix the following coccicheck warning:

lib/lzo/lzo1x_compress.c:54: WARNING opportunity for min().
lib/lzo/lzo1x_compress.c:329: WARNING opportunity for min().

min() and min_t() macro is defined in include/linux/minmax.h.  It avoids
multiple evaluations of the arguments when non-constant and performs
strict type-checking.

Link: https://lkml.kernel.org/r/20220714015441.1313036-1-13667453960@163.com


Signed-off-by: default avatarJiangshan Yi <yijiangshan@kylinos.cn>
Tested-by: default avatarDave Rodgman <dave.rodgman@arm.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent b09a7a03
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment