diff options
-rw-r--r-- | src/datacache/datacache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/datacache/datacache.c b/src/datacache/datacache.c index 7ee8dc954d..39cd6126de 100644 --- a/src/datacache/datacache.c +++ b/src/datacache/datacache.c @@ -311,7 +311,8 @@ GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h, 1, GNUNET_NO); while (h->utilization + used > h->env.quota) - GNUNET_assert (GNUNET_OK == h->api->del (h->api->cls)); + GNUNET_assert (GNUNET_OK == + h->api->del (h->api->cls)); h->utilization += used; return GNUNET_OK; } |