diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-11-28 19:47:44 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-11-28 19:47:50 +0100 |
commit | fab120fc69ad94952540adebeda302c6b2e2bece (patch) | |
tree | 346c41e604e47a7c8647a58257fe5dcf21e5f708 | |
parent | ef4b5b19b72df76baf55b2651db7942c727485f6 (diff) |
fix #9364
-rw-r--r-- | src/backend/taler-merchant-httpd_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd_helper.c b/src/backend/taler-merchant-httpd_helper.c index 5fc8eb3e..587d1d88 100644 --- 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); |