wolfssl/test.h: add unsigned attribute to type of buffer passed to wolfsentry_config_json_feed() (sync with wolfsentry e22878b666).

This commit is contained in:
Daniel Pouzzner
2022-10-25 12:06:50 -05:00
parent 084fabc733
commit 263123e7b4

View File

@ -1585,7 +1585,8 @@ static int wolfsentry_setup(
#if !defined(NO_FILESYSTEM) && !defined(WOLFSENTRY_NO_JSON)
if (_wolfsentry_config_path != NULL) {
char buf[512], err_buf[512];
unsigned char buf[512];
char err_buf[512];
struct wolfsentry_json_process_state *jps;
FILE *f = fopen(_wolfsentry_config_path, "r");