changeset 24612:45772d1c579a

Change Qun number to unsigned long
author Hu Yong <ccpaging@gmail.com>
date Tue, 11 Nov 2008 07:04:04 +0000
parents 7fd21b0ed7d1
children 6607ebd41053
files libpurple/protocols/qq/group.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/qq/group.c	Tue Nov 11 07:03:09 2008 +0000
+++ b/libpurple/protocols/qq/group.c	Tue Nov 11 07:04:04 2008 +0000
@@ -40,7 +40,7 @@
 	guint32 ext_id;
 
 	g_return_if_fail(input != NULL);
-	ext_id = strtol(input, NULL, 10);
+	ext_id = strtoul(input, NULL, 10);
 	/* 0x00000000 means search for demo group */
 	qq_request_room_search(gc, ext_id, QQ_ROOM_SEARCH_ONLY);
 }