aboutsummaryrefslogtreecommitdiff
path: root/src/json
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-23 07:26:30 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-23 07:26:30 +0200
commitf94d9e793861c5e36d17f485c3c1a7053f86587e (patch)
tree2e992a5ad05d471ac34945eb768147a896d52d6a /src/json
parentbe9b998b3369056c7c8fb0ae84fb4e2a064b496c (diff)
downloadgnunet-f94d9e793861c5e36d17f485c3c1a7053f86587e.tar.gz
gnunet-f94d9e793861c5e36d17f485c3c1a7053f86587e.zip
-style fixes
Diffstat (limited to 'src/json')
-rw-r--r--src/json/json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json/json.c b/src/json/json.c
index 51d5c0c72..6d11b4fdd 100644
--- a/src/json/json.c
+++ b/src/json/json.c
@@ -77,7 +77,7 @@ GNUNET_JSON_spec_mark_optional (struct GNUNET_JSON_Specification spec)
77{ 77{
78 struct GNUNET_JSON_Specification ret = spec; 78 struct GNUNET_JSON_Specification ret = spec;
79 79
80 ret.is_optional = GNUNET_YES; 80 ret.is_optional = true;
81 return ret; 81 return ret;
82} 82}
83 83