commit fab120fc69ad94952540adebeda302c6b2e2bece parent ef4b5b19b72df76baf55b2651db7942c727485f6 Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 28 Nov 2024 19:47:44 +0100 fix #9364 Diffstat:
| M | src/backend/taler-merchant-httpd_helper.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_helper.c b/src/backend/taler-merchant-httpd_helper.c @@ -143,7 +143,7 @@ TMH_accounts_array_valid (const json_t *accounts) } /* Test for the same payto:// URI being given twice */ - for (unsigned int j = 0; j<i; j++) + for (size_t j = 0; j<i; j++) { json_t *old_uri = json_array_get (accounts, j);