diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-05-01 23:11:11 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-05-01 23:11:11 +0200 |
commit | a03ce46d2a3a1448b20b0f3cb2dbabe941e7b826 (patch) | |
tree | deab530d9de984f79b76531c9547e4df9a4f0df5 /src/include | |
parent | 3db683d6e794c72448824d1e4ed75d6636bf3b22 (diff) |
fix various memory-use issues
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_merchant_testing_lib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/taler_merchant_testing_lib.h b/src/include/taler_merchant_testing_lib.h index 89c90cf9..c860baf2 100644 --- a/src/include/taler_merchant_testing_lib.h +++ b/src/include/taler_merchant_testing_lib.h @@ -1903,11 +1903,11 @@ TALER_TESTING_cmd_checkserver2 (const char *label, op (paths, const char *) \ op (payto_uris, const char *) \ op (amounts, const struct TALER_Amount) \ - op (urls, char *) \ - op (http_methods, char *) \ - op (http_header, char *) \ - op (http_body, void *) \ - op (http_body_size, size_t) \ + op (urls, const char *) \ + op (http_methods, const char *) \ + op (http_header, const char *) \ + op (http_body, const void *) \ + op (http_body_size, const size_t) \ op (planchet_secrets, const struct TALER_PlanchetMasterSecretP) |