X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fjson.h;h=d9f62bdacafd23ad461fea22f5ce26effad2465c;hb=7c7e37084545799555a7e49e0fb4d3d6f44f3a44;hp=c30f10cc5ed8f664dfadcc1a8c4d3e578fe4e9cc;hpb=99a9c51b93fd45748c78ace834345f2921c94d88;p=yaz-moved-to-github.git diff --git a/include/yaz/json.h b/include/yaz/json.h index c30f10c..d9f62bd 100644 --- a/include/yaz/json.h +++ b/include/yaz/json.h @@ -53,8 +53,8 @@ enum json_node_type { struct json_node { enum json_node_type type; union { - char *string; - double number; + char *string; + double number; struct json_node *link[2]; } u; }; @@ -86,7 +86,7 @@ struct json_node *json_parser_parse(json_parser_t p, const char *json_str); /** \brief returns parser error \param p JSON parser handle - \returns parse error msg + \returns parse error msg This function should be called if json_parser_parse returns NULL . */