From 0d48911ae4038156e1799f859e023a83a9b244bf Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 22 Jul 2025 20:30:44 -0400 Subject: [PATCH] Update style per code review comments --- wolfcrypt/src/asn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 000c8923a..a03c99a04 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -2586,8 +2586,8 @@ int GetSequence_ex(const byte* input, word32* inOutIdx, int* len, * @return BAD_INDEX_E when the given seqIndex is out of range. * @return ASN_PARSE_E when the seqOf is not in the expected format. */ -int wc_IndexSequenceOf(byte const * seqOf, word32 seqOfSz, size_t seqIndex, - byte const ** out, word32 * outSz) +int wc_IndexSequenceOf(const byte * seqOf, word32 seqOfSz, size_t seqIndex, + const byte ** out, word32 * outSz) { int length; word32 seqOfIdx = 0U;