diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-08-25 16:18:24 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-08-25 16:18:24 +0200 |
commit | eb559970846f0fa27f1f25c482cd07210a56f4b1 (patch) | |
tree | 8526637825e520e1420b17515934ced794a33c01 /src/pq/pq_result_helper.c | |
parent | 3742239c13001433eeade439a0e0490f07351c43 (diff) | |
download | exchange-eb559970846f0fa27f1f25c482cd07210a56f4b1.tar.gz exchange-eb559970846f0fa27f1f25c482cd07210a56f4b1.tar.bz2 exchange-eb559970846f0fa27f1f25c482cd07210a56f4b1.zip |
re-format code
Diffstat (limited to 'src/pq/pq_result_helper.c')
-rw-r--r-- | src/pq/pq_result_helper.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pq/pq_result_helper.c b/src/pq/pq_result_helper.c index 92b8e8f4..97710c43 100644 --- a/src/pq/pq_result_helper.c +++ b/src/pq/pq_result_helper.c @@ -171,7 +171,7 @@ TALER_PQ_result_spec_amount_nbo (const char *name, .dst_size = sizeof (*amount), .fname = name }; - + return res; } @@ -245,7 +245,7 @@ TALER_PQ_result_spec_amount (const char *name, .dst_size = sizeof (*amount), .fname = name }; - + return res; } @@ -352,7 +352,7 @@ TALER_PQ_result_spec_json (const char *name, .dst = (void *) jp, .fname = name }; - + return res; } @@ -391,8 +391,8 @@ extract_round_time (void *cls, return GNUNET_SYSERR; } if (PQgetisnull (result, - row, - fnum)) + row, + fnum)) { GNUNET_break (0); return GNUNET_SYSERR; @@ -511,7 +511,7 @@ TALER_PQ_result_spec_absolute_time_nbo (const char *name, struct GNUNET_TIME_AbsoluteNBO *at) { struct GNUNET_PQ_ResultSpec res = { - .conv = &extract_round_time_nbo, + .conv = &extract_round_time_nbo, .dst = (void *) at, .dst_size = sizeof (struct GNUNET_TIME_AbsoluteNBO), .fname = name |