diff libpurple/protocols/oscar/oscar.c @ 30008:59f4012b2b94

Found a few more places that need to use 64 bit value for the capabilities
author Mark Doliner <mark@kingant.net>
date Thu, 18 Mar 2010 05:47:15 +0000
parents 0d3145e6b1d6
children 8d4bed3021dc
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c	Thu Mar 18 04:53:49 2010 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Thu Mar 18 05:47:15 2010 +0000
@@ -2615,8 +2615,9 @@
 	if (args == NULL)
 		return 0;
 
-	purple_debug_misc("oscar", "Incoming rendezvous message of type %u, "
-			"user %s, status %hu\n", args->type, userinfo->bn, args->status);
+	purple_debug_misc("oscar", "Incoming rendezvous message of type %"
+			G_GUINT64_FORMAT ", user %s, status %hu\n",
+			args->type, userinfo->bn, args->status);
 
 	if (args->msg != NULL)
 	{
@@ -2756,8 +2757,8 @@
 	}
 	else
 	{
-		purple_debug_error("oscar", "Unknown request class %hu\n",
-				args->type);
+		purple_debug_error("oscar", "Unknown request class %"
+				G_GUINT64_FORMAT "\n", args->type);
 	}
 
 	g_free(message);