diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:58:43 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:58:43 +0200 |
commit | ed5b98a2c2308fbd44b906a30286d2689fd304dd (patch) | |
tree | a221b9c784b4e004eb5972e18516653d1aea6a5c /src/testing/testing_api_cmd_withdraw.c | |
parent | 042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff) |
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/testing/testing_api_cmd_withdraw.c')
-rw-r--r-- | src/testing/testing_api_cmd_withdraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing_api_cmd_withdraw.c b/src/testing/testing_api_cmd_withdraw.c index d863e406..5db97cbf 100644 --- a/src/testing/testing_api_cmd_withdraw.c +++ b/src/testing/testing_api_cmd_withdraw.c @@ -387,7 +387,7 @@ withdraw_cleanup (void *cls, TALER_EXCHANGE_destroy_denomination_key (ws->pk); ws->pk = NULL; } - GNUNET_free_non_null (ws->exchange_url); + GNUNET_free (ws->exchange_url); GNUNET_free (ws); } |