Browse Source

Rename clish_xmlnodetype_t to clish_xmlnodetype_e

Serj Kalichev 8 years ago
parent
commit
a9d396bd5a
2 changed files with 3 additions and 3 deletions
  1. 1 1
      clish/shell/shell_expat.c
  2. 2 2
      clish/shell/xmlapi.h

+ 1 - 1
clish/shell/shell_expat.c

@@ -53,7 +53,7 @@ struct clish_xmlnode_s {
 	clish_xmlnode_t *next; /**< next sibling */
 	clish_xmlnode_t *attributes; /**< attributes are nodes too */
 	char *content; /**< !NULL for text and attributes nodes */
-	clish_xmlnodetype_t type; /**< node type */
+	clish_xmlnodetype_e type; /**< node type */
 	int depth; /**< node depth */
 	clish_xmldoc_t *doc;
 };

+ 2 - 2
clish/shell/xmlapi.h

@@ -59,7 +59,7 @@ typedef enum {
 	CLISH_XMLERR_LINE 	= 0x10,
 	CLISH_XMLERR_COL 	= 0x20,
 	CLISH_XMLERR_DESC 	= 0x40
-} clish_xmlerrcaps_t;
+} clish_xmlerrcaps_e;
 
 /*
  * does this specific implementation define any error?
@@ -76,7 +76,7 @@ typedef enum {
 	CLISH_XMLNODE_PI,
 	CLISH_XMLNODE_DECL,
 	CLISH_XMLNODE_UNKNOWN,
-} clish_xmlnodetype_t;
+} clish_xmlnodetype_e;
 
 /*
  * get error description, when available