diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-12-14 15:33:10 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-12-14 15:33:10 +0100 |
commit | 229907c6e233609ccfafe1823f281581bf5e9680 (patch) | |
tree | 2c4b89388a2dbcd3eb17a9080becc6a4fa1cdd19 /src/exchange-lib | |
parent | 1897d65af506f083d8296e6184c9633d0fb5bae0 (diff) |
implement taler-bank-transfer, fixes #5195
Diffstat (limited to 'src/exchange-lib')
-rw-r--r-- | src/exchange-lib/test_exchange_api.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/exchange-lib/test_exchange_api.c b/src/exchange-lib/test_exchange_api.c index 475fbde4e..6fd9ad693 100644 --- a/src/exchange-lib/test_exchange_api.c +++ b/src/exchange-lib/test_exchange_api.c @@ -2870,13 +2870,12 @@ do_shutdown (void *cls) { struct InterpreterState *is = cls; struct Command *cmd; - unsigned int i; fprintf (stderr, "Executing shutdown at `%s'\n", is->commands[is->ip].label); - for (i=0;OC_END != (cmd = &is->commands[i])->oc;i++) + for (unsigned int i=0;OC_END != (cmd = &is->commands[i])->oc;i++) { switch (cmd->oc) { |