summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_bank_history_credit.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
commite428783e2e0295186dc4eae273df8a3f8b75df60 (patch)
tree92767e4394eb2576fa54f0558344769379e79e49 /src/testing/testing_api_cmd_bank_history_credit.c
parent9c752b3d031dbbb06544553dc71fcfebfe7fdb05 (diff)
downloadexchange-e428783e2e0295186dc4eae273df8a3f8b75df60.tar.gz
exchange-e428783e2e0295186dc4eae273df8a3f8b75df60.tar.bz2
exchange-e428783e2e0295186dc4eae273df8a3f8b75df60.zip
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/testing/testing_api_cmd_bank_history_credit.c')
-rw-r--r--src/testing/testing_api_cmd_bank_history_credit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing_api_cmd_bank_history_credit.c b/src/testing/testing_api_cmd_bank_history_credit.c
index 0b71c7162..069f62cb0 100644
--- a/src/testing/testing_api_cmd_bank_history_credit.c
+++ b/src/testing/testing_api_cmd_bank_history_credit.c
@@ -549,7 +549,7 @@ history_cleanup (void *cls,
GNUNET_free (hs->account_url);
for (unsigned int off = 0; off<hs->total; off++)
GNUNET_free (hs->h[off].url);
- GNUNET_free_non_null (hs->h);
+ GNUNET_free (hs->h);
GNUNET_free (hs);
}