diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-22 14:51:36 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-22 14:51:36 +0100 |
commit | bdbe923bf627348113866d1d79cbd65aa2c132df (patch) | |
tree | b6ee072007b1a738e630b5c6b32cae21080edb4a /src/auditor/report-lib.c | |
parent | 9b470d246231d2e399d4cd27f01d87975832f343 (diff) |
check for right type
Diffstat (limited to 'src/auditor/report-lib.c')
-rw-r--r-- | src/auditor/report-lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c index 53e4f1320..3399b4ccc 100644 --- a/src/auditor/report-lib.c +++ b/src/auditor/report-lib.c @@ -388,9 +388,9 @@ TALER_ARL_setup_sessions_and_run (TALER_ARL_Analysis ana, return GNUNET_SYSERR; } - GNUNET_break (GNUNET_SYSERR != - transact (ana, - ana_cls)); + if (0 > transact (ana, + ana_cls)) + return GNUNET_SYSERR; return GNUNET_OK; } |