diff options
author | Schanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de> | 2018-08-09 16:10:56 +0200 |
---|---|---|
committer | Schanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de> | 2018-08-09 16:10:56 +0200 |
commit | 8bab004ac3e562f24c4167b59dde287abd6496d4 (patch) | |
tree | 1a97f478471856154b187b4998534f5a80acd71d /src | |
parent | 60548eb84908c969034a9ab4f8d66b9a315c7d42 (diff) |
syntax
Diffstat (limited to 'src')
-rw-r--r-- | src/reclaim/gnunet-reclaim.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/reclaim/gnunet-reclaim.c b/src/reclaim/gnunet-reclaim.c index 02138cfff..5aec0cb9a 100644 --- a/src/reclaim/gnunet-reclaim.c +++ b/src/reclaim/gnunet-reclaim.c @@ -312,7 +312,9 @@ iter_finished (void *cls) claim->type = type; claim->data = data; claim->data_size = data_size; - } else { + } + else + { claim = GNUNET_RECLAIM_ATTRIBUTE_claim_new (attr_name, type, data, @@ -371,7 +373,9 @@ iter_cb (void *cls, break; } GNUNET_free (attrs_tmp); - } else if (list) { + } + else if (list) + { attr_str = GNUNET_RECLAIM_ATTRIBUTE_value_to_string (attr->type, attr->data, attr->data_size); |