summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plist.c b/src/plist.c
index e0ca653..e64cff2 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -104,7 +104,7 @@ void free_plist(xmlDocPtr plist) {
104 * @param name The name of the new node. 104 * @param name The name of the new node.
105 * @param content The string containing the text node of the new node. 105 * @param content The string containing the text node of the new node.
106 * @param to_node The node to attach the child node to. If none is given, the 106 * @param to_node The node to attach the child node to. If none is given, the
107 * root node of the given document is used. 107 * root node of the given document is used.
108 * @param depth The number of tabs to indent the new node. 108 * @param depth The number of tabs to indent the new node.
109 * 109 *
110 * @return The newly created node. 110 * @return The newly created node.
@@ -186,9 +186,9 @@ xmlNode *add_key_data_dict_element(xmlDocPtr plist, xmlNode *dict, const char *k
186/** Reads a set of keys and strings into an array from a plist XML document. 186/** Reads a set of keys and strings into an array from a plist XML document.
187 * 187 *
188 * @param dict The root XMLNode of a plist XML document to be read. 188 * @param dict The root XMLNode of a plist XML document to be read.
189 * 189 *
190 * @return An array where each even number is a key and the odd numbers are 190 * @return An array where each even number is a key and the odd numbers are
191 * values. If the odd number is \0, that's the end of the list. 191 * values. If the odd number is \0, that's the end of the list.
192 */ 192 */
193char **read_dict_element_strings(xmlNode *dict) { 193char **read_dict_element_strings(xmlNode *dict) {
194 char **return_me = NULL, **old = NULL; 194 char **return_me = NULL, **old = NULL;