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/lib/exchange_api_common.c | |
parent | 042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff) |
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/lib/exchange_api_common.c')
-rw-r--r-- | src/lib/exchange_api_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/exchange_api_common.c b/src/lib/exchange_api_common.c index bf8eb5376..e7e87487b 100644 --- a/src/lib/exchange_api_common.c +++ b/src/lib/exchange_api_common.c @@ -425,8 +425,8 @@ TALER_EXCHANGE_free_reserve_history ( switch (rhistory[i].type) { case TALER_EXCHANGE_RTT_CREDIT: - GNUNET_free_non_null (rhistory[i].details.in_details.wire_reference); - GNUNET_free_non_null (rhistory[i].details.in_details.sender_url); + GNUNET_free (rhistory[i].details.in_details.wire_reference); + GNUNET_free (rhistory[i].details.in_details.sender_url); break; case TALER_EXCHANGE_RTT_WITHDRAWAL: break; |