summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/include/pj/xml.h')
-rw-r--r--pjlib/include/pj/xml.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjlib/include/pj/xml.h b/pjlib/include/pj/xml.h
index d487cc88..9777a514 100644
--- a/pjlib/include/pj/xml.h
+++ b/pjlib/include/pj/xml.h
@@ -30,7 +30,7 @@ typedef struct pj_xml_node pj_xml_node;
/** This structure declares XML attribute. */
struct pj_xml_attr
{
- PJ_DECL_LIST_MEMBER(pj_xml_attr)
+ PJ_DECL_LIST_MEMBER(pj_xml_attr);
pj_str_t name; /**< Attribute name. */
pj_str_t value; /**< Attribute value. */
};
@@ -39,13 +39,13 @@ struct pj_xml_attr
*/
typedef struct pj_xml_node_head
{
- PJ_DECL_LIST_MEMBER(pj_xml_node)
+ PJ_DECL_LIST_MEMBER(pj_xml_node);
} pj_xml_node_head;
/** This structure describes XML node. */
struct pj_xml_node
{
- PJ_DECL_LIST_MEMBER(pj_xml_node) /** List @a prev and @a next member */
+ PJ_DECL_LIST_MEMBER(pj_xml_node); /** List @a prev and @a next member */
pj_str_t name; /** Node name. */
pj_xml_attr attr_head; /** Attribute list. */
pj_xml_node_head node_head; /** Node list. */