aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-27 15:24:57 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-27 15:24:57 +0200
commit59a36b88e6d6f0b1cd706ef21771656f9357e9a4 (patch)
treec815e608051e364f1a102eb8e28d5efe1931162d
parentb1feb05aa88177b49fd1e0a8905257416fda41f3 (diff)
downloadgnunet-59a36b88e6d6f0b1cd706ef21771656f9357e9a4.tar.gz
gnunet-59a36b88e6d6f0b1cd706ef21771656f9357e9a4.zip
-indent
-rw-r--r--src/json/json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json/json.c b/src/json/json.c
index 4dabd4d22..51d5c0c72 100644
--- a/src/json/json.c
+++ b/src/json/json.c
@@ -87,7 +87,8 @@ GNUNET_JSON_parse_free (struct GNUNET_JSON_Specification *spec)
87{ 87{
88 for (unsigned int i = 0; NULL != spec[i].parser; i++) 88 for (unsigned int i = 0; NULL != spec[i].parser; i++)
89 if (NULL != spec[i].cleaner) 89 if (NULL != spec[i].cleaner)
90 spec[i].cleaner (spec[i].cls, &spec[i]); 90 spec[i].cleaner (spec[i].cls,
91 &spec[i]);
91} 92}
92 93
93 94