diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-06-06 07:53:39 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-06-06 07:53:39 +0200 |
commit | 73ab0f26d0fcd47b7b4d6f4faf5bf143a2d06743 (patch) | |
tree | 0e063e64ffe05b029bbd70a1de20b3a0311a58ca | |
parent | f461f068dc304ceea5ae3d9cda67e227d2bdba96 (diff) |
better indentation
-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; } |