changeset 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
files libpurple/protocols/msn/notification.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/msn/notification.c	Tue Dec 15 02:05:32 2009 +0000
+++ b/libpurple/protocols/msn/notification.c	Tue Dec 15 03:22:18 2009 +0000
@@ -1700,7 +1700,7 @@
 				clientNode = xmlnode_get_child(epNode, "ClientType");
 				if (clientNode != NULL) {
 					tmp = xmlnode_get_data(clientNode);
-					ep->type = strtoul(tmp, 10, NULL);
+					ep->type = strtoul(tmp, NULL, 10);
 					g_free(tmp);
 				}
 			}