mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-30 07:32:12 +01:00
The warning was "comparison of array 'ecc_sets[i].name' not equal to a null pointer is always true [-Wtautological-pointer-compare]" Compiler is correct, ecc_sets[i].name is an array of size 16, thus can't be NULL Also, fix build error on Windows by changing uint8_t to "unsigned char" (alternative fix could be including stdint.h)