# HG changeset patch # User Elliott Sales de Andrade # Date 1241305331 0 # Node ID 25d802c76536baca3daec25992eaa5ea9cd023ce # Parent bbb89d322034d4fcbba01ee9ae35d83c1da459d5 Word wrap a little. diff -r bbb89d322034 -r 25d802c76536 libpurple/protocols/msn/notification.c --- 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;