comparison libpurple/protocols/msn/msn.c @ 15590:1d0d25848c5d

Get rid of a minor compile warning
author Mark Doliner <mark@kingant.net>
date Fri, 09 Feb 2007 07:22:19 +0000
parents d74985add99f
children 71af5b6209d5
comparison
equal deleted inserted replaced
15589:d07c1e2e0496 15590:1d0d25848c5d
743 char *msgtext; 743 char *msgtext;
744 744
745 account = gaim_connection_get_account(gc); 745 account = gaim_connection_get_account(gc);
746 746
747 if (buddy) { 747 if (buddy) {
748 GaimPresence *p = gaim_buddy_get_presence(buddy); 748 GaimPresence *p = gaim_buddy_get_presence(buddy);
749 if (gaim_presence_is_status_primitive_active(p, GAIM_STATUS_MOBILE)) { 749 if (gaim_presence_is_status_primitive_active(p, GAIM_STATUS_MOBILE)) {
750 char *text = gaim_markup_strip_html(message); 750 char *text = gaim_markup_strip_html(message);
751 send_to_mobile(gc, who, text); 751 send_to_mobile(gc, who, text);
752 g_free(text); 752 g_free(text);
753 return; 753 return 1;
754 } 754 }
755 } 755 }
756 756
757 msn_import_html(message, &msgformat, &msgtext); 757 msn_import_html(message, &msgformat, &msgtext);
758 758