summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-22 14:51:36 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-22 14:51:36 +0100
commitbdbe923bf627348113866d1d79cbd65aa2c132df (patch)
treeb6ee072007b1a738e630b5c6b32cae21080edb4a
parent9b470d246231d2e399d4cd27f01d87975832f343 (diff)
downloadexchange-bdbe923bf627348113866d1d79cbd65aa2c132df.tar.gz
exchange-bdbe923bf627348113866d1d79cbd65aa2c132df.tar.bz2
exchange-bdbe923bf627348113866d1d79cbd65aa2c132df.zip
check for right type
-rw-r--r--src/auditor/report-lib.c6
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;
}