commit | 11ea361d803589dcfa38767594236afbc8789f8b | [log] [tgz] |
---|---|---|
author | Laurence Lundblade <laurencelundblade@users.noreply.github.com> | Fri Jul 01 13:26:23 2022 -0700 |
committer | GitHub <noreply@github.com> | Fri Jul 01 13:26:23 2022 -0700 |
tree | 177ef0a80b572ad325182b45380c771656c5071b | |
parent | bdb63083ea5dcbedfc576fb292a9847b4b6c23d1 [diff] [blame] |
Fix compiler warning in test code (#148) Co-authored-by: Laurence Lundblade <lgl@securitytheory.com>
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 */