From 6c89441c2b2a8af8f8a1169f38686b89498ca084 Mon Sep 17 00:00:00 2001 From: Mark Doliner Date: Tue, 4 Aug 2009 02:06:01 +0000 Subject: We can use the typedef here, right? --- libpurple/xmlnode.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libpurple/xmlnode.h b/libpurple/xmlnode.h index cf74edc23a..737bab8443 100644 --- a/libpurple/xmlnode.h +++ b/libpurple/xmlnode.h @@ -53,10 +53,10 @@ struct _xmlnode XMLNodeType type; /**< The type of the node. */ char *data; /**< The data for the node. */ size_t data_sz; /**< The size of the data. */ - struct _xmlnode *parent; /**< The parent node or @c NULL.*/ - struct _xmlnode *child; /**< The child node or @c NULL.*/ - struct _xmlnode *lastchild; /**< The last child node or @c NULL.*/ - struct _xmlnode *next; /**< The next node or @c NULL. */ + xmlnode *parent; /**< The parent node or @c NULL.*/ + xmlnode *child; /**< The child node or @c NULL.*/ + xmlnode *lastchild; /**< The last child node or @c NULL.*/ + xmlnode *next; /**< The next node or @c NULL. */ char *prefix; /**< The namespace prefix if any. */ GHashTable *namespace_map; /**< The namespace map. */ }; -- cgit v1.2.1