summaryrefslogtreecommitdiff
path: root/src/pq/test_pq.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-10-22 13:38:04 +0200
committerChristian Grothoff <christian@grothoff.org>2022-10-22 13:38:04 +0200
commit1435e5627e39bf2067cad0cdc1d8220a9a01863a (patch)
tree9ecfc119eb395d2e6e4abdca3bedef6775bfa947 /src/pq/test_pq.c
parent3d1443d4e6ee87a59bc4cc604f0f675067c5f57d (diff)
downloadexchange-1435e5627e39bf2067cad0cdc1d8220a9a01863a.tar.gz
exchange-1435e5627e39bf2067cad0cdc1d8220a9a01863a.tar.bz2
exchange-1435e5627e39bf2067cad0cdc1d8220a9a01863a.zip
-fix ftbfs
Diffstat (limited to 'src/pq/test_pq.c')
-rw-r--r--src/pq/test_pq.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pq/test_pq.c b/src/pq/test_pq.c
index 52e92b561..a944cb1e0 100644
--- a/src/pq/test_pq.c
+++ b/src/pq/test_pq.c
@@ -41,8 +41,7 @@ postgres_prepare (struct GNUNET_PQ_Context *db)
",namount_frac"
",json"
") VALUES "
- "($1, $2, $3, $4, $5);",
- 5),
+ "($1, $2, $3, $4, $5);"),
GNUNET_PQ_make_prepare ("test_select",
"SELECT"
" hamount_val"
@@ -50,8 +49,7 @@ postgres_prepare (struct GNUNET_PQ_Context *db)
",namount_val"
",namount_frac"
",json"
- " FROM test_pq;",
- 0),
+ " FROM test_pq;"),
GNUNET_PQ_PREPARED_STATEMENT_END
};