aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-07-24 17:26:49 +0200
committerChristian Grothoff <christian@grothoff.org>2024-07-29 12:18:47 +0200
commit5bf8f5c3721a72864046c10207cf5a32fa17b17a (patch)
tree35b1d138c95e46c7ff9cb6766af971bb3b663c4c /src
parent1fbb444ec1d4abba377ba4fce3606d300f4ff138 (diff)
fix FTBFS
Diffstat (limited to 'src')
-rw-r--r--src/exchangedb/pg_insert_kyc_attributes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchangedb/pg_insert_kyc_attributes.c b/src/exchangedb/pg_insert_kyc_attributes.c
index 37e833863..ba0843e19 100644
--- a/src/exchangedb/pg_insert_kyc_attributes.c
+++ b/src/exchangedb/pg_insert_kyc_attributes.c
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2022, 2023 Taler Systems SA
+ Copyright (C) 2022, 2023, 2024 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
@@ -78,9 +78,9 @@ TEH_PG_insert_kyc_attributes (
GNUNET_PQ_query_param_timestamp (&expiration),
TALER_PQ_query_param_json (account_properties),
TALER_PQ_query_param_json (new_rules),
- GNUNET_PQ_query_param_array_string (pg,
- num_events,
- events),
+ GNUNET_PQ_query_param_array_ptrs_string (num_events,
+ events,
+ pg->conn),
GNUNET_PQ_query_param_fixed_size (enc_attributes,
enc_attributes_size),
GNUNET_PQ_query_param_bool (to_investigate),