mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
byte warning casts
This commit is contained in:
@ -4673,7 +4673,7 @@ int SetCipherList(Suites* s, const char* list)
|
||||
|
||||
/* precede export with 1 byte length */
|
||||
ret = ecc_export_x963(&myKey, encSecret + 1, &size);
|
||||
encSecret[0] = size;
|
||||
encSecret[0] = (byte)size;
|
||||
encSz = size + 1;
|
||||
|
||||
if (ret != 0)
|
||||
|
Reference in New Issue
Block a user