commit | f64f1b15f757363869135bcb57e57da578ede18e | [log] [tgz] |
---|---|---|
author | Laurence Lundblade <lgl@securitytheory.com> | Fri Jul 01 13:24:08 2022 -0700 |
committer | Laurence Lundblade <lgl@securitytheory.com> | Fri Jul 01 13:24:08 2022 -0700 |
tree | 177ef0a80b572ad325182b45380c771656c5071b | |
parent | bdb63083ea5dcbedfc576fb292a9847b4b6c23d1 [diff] |
Fix compiler warning in test code
diff --git a/test/qcbor_decode_tests.c b/test/qcbor_decode_tests.c index e0d8202..755d032 100644 --- a/test/qcbor_decode_tests.c +++ b/test/qcbor_decode_tests.c
@@ -6072,7 +6072,7 @@ uCBORError = QCBORDecode_Finish(&DCtx); - return uCBORError; + return (int32_t)uCBORError; } #endif /* QCBOR_DISABLE_INDEFINITE_LENGTH_STRINGS */