aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/datacache/datacache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/datacache/datacache.c b/src/datacache/datacache.c
index 7ee8dc954..39cd6126d 100644
--- a/src/datacache/datacache.c
+++ b/src/datacache/datacache.c
@@ -311,7 +311,8 @@ GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h,
311 1, 311 1,
312 GNUNET_NO); 312 GNUNET_NO);
313 while (h->utilization + used > h->env.quota) 313 while (h->utilization + used > h->env.quota)
314 GNUNET_assert (GNUNET_OK == h->api->del (h->api->cls)); 314 GNUNET_assert (GNUNET_OK ==
315 h->api->del (h->api->cls));
315 h->utilization += used; 316 h->utilization += used;
316 return GNUNET_OK; 317 return GNUNET_OK;
317} 318}