comparison libpurple/protocols/msn/notification.c @ 30683:509c4ffff958

Fix a little argument swapping.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Tue, 15 Dec 2009 03:22:18 +0000
parents f56126c5aa44
children b4dc2d27f24e
comparison
equal deleted inserted replaced
30682:f56126c5aa44 30683:509c4ffff958
1698 } 1698 }
1699 1699
1700 clientNode = xmlnode_get_child(epNode, "ClientType"); 1700 clientNode = xmlnode_get_child(epNode, "ClientType");
1701 if (clientNode != NULL) { 1701 if (clientNode != NULL) {
1702 tmp = xmlnode_get_data(clientNode); 1702 tmp = xmlnode_get_data(clientNode);
1703 ep->type = strtoul(tmp, 10, NULL); 1703 ep->type = strtoul(tmp, NULL, 10);
1704 g_free(tmp); 1704 g_free(tmp);
1705 } 1705 }
1706 } 1706 }
1707 } 1707 }
1708 } 1708 }