From ba1170ac0504fbe7cf96a9d6515477ed8de1b29d Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Mon, 28 Apr 2025 11:37:18 -0400 Subject: toml-c c99 compliance --- toml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toml.c') diff --git a/toml.c b/toml.c index 7f3ac61..c5c61d6 100644 --- a/toml.c +++ b/toml.c @@ -1913,7 +1913,7 @@ int toml_value_string(toml_unparsed_t src, char** ret, int* len) { toml_value_t toml_array_string(const toml_array_t* arr, int idx) { toml_value_t ret; memset(&ret, 0, sizeof(ret)); - ret.ok = (toml_value_string(toml_array_unparsed(arr, idx), &ret.u.s, &ret.u.sl) == 0); + ret.ok = (toml_value_string(toml_array_unparsed(arr, idx), &ret.u.s.s, &ret.u.s.len) == 0); return ret; } @@ -1950,7 +1950,7 @@ toml_value_t toml_table_string(const toml_table_t* tbl, const char* key) { memset(&ret, 0, sizeof(ret)); toml_unparsed_t raw = toml_table_unparsed(tbl, key); if (raw) - ret.ok = (toml_value_string(raw, &ret.u.s, &ret.u.sl) == 0); + ret.ok = (toml_value_string(raw, &ret.u.s.s, &ret.u.s.len) == 0); return ret; } -- cgit v1.2.3