summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-01-15 15:18:00 +0100
committerChristian Grothoff <christian@grothoff.org>2018-01-15 15:18:00 +0100
commit2526143a4f08b2b1be56cb3d344d051221295633 (patch)
treedd4be152602028ada019aca799b0fe22b5ab75fd /src
parent9fffeee4ef8bc4d1c42cb0bd7ece49555ab97ea2 (diff)
downloadexchange-2526143a4f08b2b1be56cb3d344d051221295633.tar.gz
exchange-2526143a4f08b2b1be56cb3d344d051221295633.tar.bz2
exchange-2526143a4f08b2b1be56cb3d344d051221295633.zip
fix type for bool to match what postgres returns -- 1 byte instead of 4 bytes
Diffstat (limited to 'src')
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index 847746412..a9d5db767 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -3058,7 +3058,7 @@ struct SelectRefundContext
/**
* Set to #GNUNET_SYSERR on error.
- */
+ */
int status;
};
@@ -6215,8 +6215,8 @@ missing_wire_cb (void *cls,
struct TALER_Amount amount;
json_t *wire;
struct GNUNET_TIME_Absolute deadline;
- /* bool? */ uint32_t tiny;
- /* bool? */ uint32_t done;
+ uint8_t tiny;
+ uint8_t done;
struct GNUNET_PQ_ResultSpec rs[] = {
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
&rowid),
@@ -6228,10 +6228,10 @@ missing_wire_cb (void *cls,
&wire),
TALER_PQ_result_spec_absolute_time ("wire_deadline",
&deadline),
- GNUNET_PQ_result_spec_uint32 ("tiny",
- &tiny),
- GNUNET_PQ_result_spec_uint32 ("done",
- &done),
+ GNUNET_PQ_result_spec_auto_from_type ("tiny",
+ &tiny),
+ GNUNET_PQ_result_spec_auto_from_type ("done",
+ &done),
GNUNET_PQ_result_spec_end
};