libpurple/protocols/msn/notification.c

changeset 27011
54dc8a6ea2cc
parent 27010
449372d75256
child 27030
dd4e097bd388
child 27037
1bb54bbebbca
--- a/libpurple/protocols/msn/notification.c	Sat May 02 23:01:32 2009 +0000
+++ b/libpurple/protocols/msn/notification.c	Sat May 02 23:02:11 2009 +0000
@@ -785,13 +785,17 @@
 		purple_debug_info("msn", "Invalid XML in ADL!\n");
 		return;
 	}
-	for (domain_node = xmlnode_get_child(root, "d"); domain_node; domain_node = xmlnode_get_next_twin(domain_node)) {
+	for (domain_node = xmlnode_get_child(root, "d");
+	     domain_node;
+	     domain_node = xmlnode_get_next_twin(domain_node)) {
 		const gchar * domain = NULL;
 		xmlnode *contact_node = NULL;
 
 		domain = xmlnode_get_attrib(domain_node, "n");
 
-		for (contact_node = xmlnode_get_child(domain_node, "c"); contact_node; contact_node = xmlnode_get_next_twin(contact_node)) {
+		for (contact_node = xmlnode_get_child(domain_node, "c");
+		     contact_node;
+		     contact_node = xmlnode_get_next_twin(contact_node)) {
 			const gchar *list;
 			gint list_op = 0;
 

mercurial