diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-04-24 03:26:00 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-04-24 03:26:00 +0200 |
commit | 2cf860f09c28cbbdfd0b66176f4f0bd93a184048 (patch) | |
tree | 39de75c2f326130a77550dc18511bbe59a25bbef /src/backenddb/plugin_merchantdb_postgres.c | |
parent | f9441ca8541756e454a6560f8f7dc11afd8b300c (diff) |
fix const causing ftbfs
Diffstat (limited to 'src/backenddb/plugin_merchantdb_postgres.c')
-rw-r--r-- | src/backenddb/plugin_merchantdb_postgres.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index 6306d637..d437d8e8 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -152,7 +152,7 @@ postgres_store_payment (void *cls, struct GNUNET_TIME_Absolute refund, const struct TALER_Amount *amount_without_fee, const struct TALER_CoinSpendPublicKeyP *coin_pub, - json_t *exchange_proof) + const json_t *exchange_proof) { struct PostgresClosure *pg = cls; PGresult *res; |