commit | c425e87af7b639458d253e6db15798adca3bfe76 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Mon Jun 04 15:07:13 2018 +0200 |
committer | itayzafrir <itay.zafrir@arm.com> | Wed Sep 05 12:13:23 2018 +0300 |
tree | 0709adbddf840c42fda6e06cd0d4749dd972701a | |
parent | cceea98bfe2224843040c9f4e88d2d382dec757e [diff] |
Add cast to satisfy gcc -Wsign-compare
diff --git a/tests/suites/test_suite_psa_crypto.function b/tests/suites/test_suite_psa_crypto.function index 65b4739..8c29f1d 100644 --- a/tests/suites/test_suite_psa_crypto.function +++ b/tests/suites/test_suite_psa_crypto.function
@@ -581,7 +581,7 @@ goto destroy; - TEST_ASSERT( exported_length == public_key_expected_length ); + TEST_ASSERT( exported_length == (size_t) public_key_expected_length ); destroy: /* Destroy the key */