From c8e3f5d70fdcf16968cb05999c59f9ec4a9abeff Mon Sep 17 00:00:00 2001 From: nekobit Date: Wed, 1 Jun 2022 06:11:50 +0000 Subject: [PATCH] Incomplete loop fix FossilOrigin-Name: 1fb69b8c5ce57d2120cc3e80d08e29a0de27d0f8cc6d4fa96863c1b7fe0cd002 --- src/string_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string_helpers.c b/src/string_helpers.c index 5819627..0c57f7b 100644 --- a/src/string_helpers.c +++ b/src/string_helpers.c @@ -28,7 +28,7 @@ char* construct_func_strings(char* (*func)(void*, size_t, size_t*), size_t* ret_size) { char* res_html, *result = NULL; - int curr_parse_size = 0, last_parse_size, parse_size; + size_t curr_parse_size = 0, last_parse_size, parse_size; if (strings_len <= 0) return NULL;