Fix a type-cast

Sat, 19 Apr 2014 20:04:33 +0530

author
Ankit Vani <a@nevitus.org>
date
Sat, 19 Apr 2014 20:04:33 +0530
changeset 35876
b0ff48096c0d
parent 35874
440b859c1c97
child 35877
6c3ab2fd4412

Fix a type-cast

pidgin/plugins/cap/cap.c file | annotate | diff | comparison | revisions
--- a/pidgin/plugins/cap/cap.c	Fri Apr 18 00:36:18 2014 +0200
+++ b/pidgin/plugins/cap/cap.c	Sat Apr 19 20:04:33 2014 +0530
@@ -433,7 +433,7 @@
 
 /* drawing-tooltip */
 static void drawing_tooltip(PurpleBlistNode *node, GString *text, gboolean full) {
-	if (PURPLE_IS_BUDDY_CLASS(node)) {
+	if (PURPLE_IS_BUDDY(node)) {
 		PurpleBuddy *buddy = PURPLE_BUDDY(node);
 		CapStatistics *stats = get_stats_for(buddy);
 		/* get the probability that this buddy will respond and add to the tooltip */

mercurial