commit | 6c9a82446a4e7a176692db992121c0b4723f8288 | [log] [tgz] |
---|---|---|
author | Laurence Lundblade <laurencelundblade@users.noreply.github.com> | Wed Jun 12 20:34:52 2024 -0700 |
committer | GitHub <noreply@github.com> | Wed Jun 12 20:34:52 2024 -0700 |
tree | 46134c1c48227a3953f0593384d8f060a3ea375d | |
parent | ec290b882e87a33c16f9aa51935ebd86e9e3cef7 [diff] |
Fix compiler warning with QCBOR_DISABLE_TAGS Issue introduced in previous commit. Co-authored-by: Laurence Lundblade <lgl@securitytheory.com>
diff --git a/src/qcbor_decode.c b/src/qcbor_decode.c index 7b8ce5c..ee56a5f 100644 --- a/src/qcbor_decode.c +++ b/src/qcbor_decode.c
@@ -1132,7 +1132,7 @@ } #else /* QCBOR_DISABLE_TAGS */ (void)nAdditionalInfo; - (void)uArgument; + (void)uTagNumber; (void)pDecodedItem; return QCBOR_ERR_TAGS_DISABLED; #endif /* QCBOR_DISABLE_TAGS */