diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-02-11 23:02:22 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-02-11 23:02:22 +0100 |
commit | 1448f97b5119f0cd163ce745c04601d0be45458b (patch) | |
tree | 37fb77382bc1e1f6539dfc18f87c23956e1b2192 /src/bank-lib/fakebank.c | |
parent | 357dbc02352d1efa078f50f9405f3ee7890dc735 (diff) |
keep the const though, that was an improvement
Diffstat (limited to 'src/bank-lib/fakebank.c')
-rw-r--r-- | src/bank-lib/fakebank.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c index 56af11f8a..614b083aa 100644 --- a/src/bank-lib/fakebank.c +++ b/src/bank-lib/fakebank.c @@ -972,7 +972,7 @@ handle_debit_history (struct TALER_FAKEBANK_Handle *h, const char *account) { struct HistoryArgs ha; - struct Transaction *pos; + const struct Transaction *pos; json_t *history; if (GNUNET_OK != @@ -1087,7 +1087,7 @@ handle_credit_history (struct TALER_FAKEBANK_Handle *h, const char *account) { struct HistoryArgs ha; - struct Transaction *pos; + const struct Transaction *pos; json_t *history; if (GNUNET_OK != |