aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2021-11-28 17:05:40 +0100
committerChristian Grothoff <grothoff@gnunet.org>2021-11-28 17:05:40 +0100
commitbb2d2ab35cb1c28511e6cfd640eb7c39cc4cde47 (patch)
treed17ad9dde05a9a1fce7f070e8ad0a78f02147f6c
parent4eb546478aaee8618567b5f7926e7f974b773d16 (diff)
downloadgnunet-bb2d2ab35cb1c28511e6cfd640eb7c39cc4cde47.tar.gz
gnunet-bb2d2ab35cb1c28511e6cfd640eb7c39cc4cde47.zip
-fix ftbfs:v0.15.4-beta.0
|
-rw-r--r--src/util/perf_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/perf_malloc.c b/src/util/perf_malloc.c
index 1c91402da..ea25148ec 100644
--- a/src/util/perf_malloc.c
+++ b/src/util/perf_malloc.c
@@ -36,7 +36,7 @@ perf_malloc ()
36 for (size_t i = 1; i < 1024 * 1024; i += 1024) 36 for (size_t i = 1; i < 1024 * 1024; i += 1024)
37 { 37 {
38 ret += i; 38 ret += i;
39 GNUNET_free (GNUNET_malloc (i)); 39 GNUNET_free_nz (GNUNET_malloc (i));
40 } 40 }
41 return ret; 41 return ret;
42} 42}