diff options
-rw-r--r-- | src/merchant-tools/taler-merchant-benchmark.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/merchant-tools/taler-merchant-benchmark.c b/src/merchant-tools/taler-merchant-benchmark.c index 96f28702..0d5cf83a 100644 --- a/src/merchant-tools/taler-merchant-benchmark.c +++ b/src/merchant-tools/taler-merchant-benchmark.c @@ -514,9 +514,12 @@ run (void *cls, corner_commands); return; } - - TALER_LOG_ERROR ("Neither ordinary or corner payments" - " were specified to be run.\n"); + + /* Should never get here, as the control on subcommands + * happens earlier at launch time. */ + fprintf (stderr, + "None of 'ordinary' or 'corner'" + " subcommands were given\n"); result = 1; } |