donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit b6ebf6a88758b9f67f9e60607bef7f1b715aea7c
parent d9f6aa7f0cd7a59d8033e1d8d19233cec58ab380
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue,  2 Jun 2026 17:21:47 +0200

fix delete: this is a non-select

Diffstat:
Msrc/donaudb/do_charity_delete.c | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/donaudb/do_charity_delete.c b/src/donaudb/do_charity_delete.c @@ -34,9 +34,6 @@ DONAUDB_do_charity_delete (struct DONAUDB_PostgresContext *ctx, GNUNET_PQ_query_param_uint64 (&charity_id), GNUNET_PQ_query_param_end }; - struct GNUNET_PQ_ResultSpec rs[] = { - GNUNET_PQ_result_spec_end - }; PREPARE (ctx, "call_charity_delete", @@ -44,6 +41,5 @@ DONAUDB_do_charity_delete (struct DONAUDB_PostgresContext *ctx, "WHERE charity_id=$1"); return GNUNET_PQ_eval_prepared_non_select (ctx->conn, "call_charity_delete", - params, - rs); + params); }