diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-11-12 14:47:26 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-11-12 14:47:26 +0100 |
commit | 87f3f5230f7bbcb02e5b54d66ad3cd2e51ac3c08 (patch) | |
tree | 7a025cb54595e128e840aa42c7b4952bc0f9f63f /src/exchangedb | |
parent | 1b7a1d5c586feeca84095a8dd7c9dda068b76acd (diff) |
fix argument order
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/pg_kyc_provider_account_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchangedb/pg_kyc_provider_account_lookup.c b/src/exchangedb/pg_kyc_provider_account_lookup.c index cca3ab547..f9db2cbc1 100644 --- a/src/exchangedb/pg_kyc_provider_account_lookup.c +++ b/src/exchangedb/pg_kyc_provider_account_lookup.c @@ -36,8 +36,8 @@ TEH_PG_kyc_provider_account_lookup ( { struct PostgresClosure *pg = cls; struct GNUNET_PQ_QueryParam params[] = { - GNUNET_PQ_query_param_string (provider_section), GNUNET_PQ_query_param_string (provider_legitimization_id), + GNUNET_PQ_query_param_string (provider_section), GNUNET_PQ_query_param_end }; struct GNUNET_PQ_ResultSpec rs[] = { |