diff options
Diffstat (limited to 'src/util/common_allocation.c')
-rw-r--r-- | src/util/common_allocation.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util/common_allocation.c b/src/util/common_allocation.c index 2f78c98f6f..748ca620df 100644 --- a/src/util/common_allocation.c +++ b/src/util/common_allocation.c @@ -48,8 +48,7 @@ GNUNET_xmalloc_ (size_t size, const char *filename, int linenumber) { /* As a security precaution, we generally do not allow very large allocations using the default 'GNUNET_malloc' macro */ - GNUNET_assert_at (size <= GNUNET_MAX_MALLOC_CHECKED, filename, - linenumber); + GNUNET_assert_at (size <= GNUNET_MAX_MALLOC_CHECKED, filename, linenumber); return GNUNET_xmalloc_unchecked_ (size, filename, linenumber); } |