[APPSHIM_APITEST] Fix a Clang-Cl warning about n

- "warning: comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]"

CORE-14306
This commit is contained in:
Serge Gautherie 2018-04-17 13:26:33 +02:00 committed by Mark Jansen
parent 33cc014cf5
commit f6a4ec8041

View file

@ -481,7 +481,7 @@ START_TEST(dispmode)
else
{
n = (size_t)atoi(argv[2]);
if (n >= 0 && n < _countof(tests))
if (n < _countof(tests))
{
run_test(n, FALSE);
}