aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-02-19 12:26:18 +0100
committerChristian Grothoff <christian@grothoff.org>2022-02-19 12:26:27 +0100
commit25ef40ef768743a10b7b29881c267e0fdc9fc677 (patch)
tree6b89d3c2ca7ce1547cb401a2857d7ee6bc896a91 /src/include
parent4100c5acfe6a70f520c4a8c998baf49d9b9c1717 (diff)
downloadgnunet-25ef40ef768743a10b7b29881c267e0fdc9fc677.tar.gz
gnunet-25ef40ef768743a10b7b29881c267e0fdc9fc677.zip
-style fixes
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_json_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_json_lib.h b/src/include/gnunet_json_lib.h
index 7d101196c..6e73a3365 100644
--- a/src/include/gnunet_json_lib.h
+++ b/src/include/gnunet_json_lib.h
@@ -48,10 +48,10 @@ struct GNUNET_JSON_Specification;
48 * @return #GNUNET_SYSERR on error, 48 * @return #GNUNET_SYSERR on error,
49 * #GNUNET_OK on success 49 * #GNUNET_OK on success
50 */ 50 */
51typedef int 51typedef enum GNUNET_GenericReturnValue
52(*GNUNET_JSON_Parser) (void *cls, 52(*GNUNET_JSON_Parser)(void *cls,
53 json_t *root, 53 json_t *root,
54 struct GNUNET_JSON_Specification *spec); 54 struct GNUNET_JSON_Specification *spec);
55 55
56 56
57/** 57/**