aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
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/**