diff -r bff56dfca65d -r a5d67aaea639 libpurple/protocols/gg/chat.c --- a/libpurple/protocols/gg/chat.c Tue Oct 08 20:30:51 2013 +0530 +++ b/libpurple/protocols/gg/chat.c Tue Oct 08 23:53:39 2013 +0530 @@ -365,7 +365,7 @@ char *buff = g_strdup_printf( _("%s is not a valid room identifier"), id_cs); purple_notify_error(gc, _("Invalid Room Identifier"), - _("Invalid Room Identifier"), buff); + _("Invalid Room Identifier"), buff, NULL); g_free(buff); purple_serv_got_join_chat_failed(gc, components); return; @@ -400,7 +400,7 @@ _("%s is not a valid room identifier"), id_s); g_free(id_s); purple_notify_error(gc, _("Invalid Room Identifier"), - _("Invalid Room Identifier"), buff); + _("Invalid Room Identifier"), buff, NULL); g_free(buff); } else /* if (chat->left) */ @@ -408,7 +408,7 @@ purple_notify_error(gc, _("Could not join chat room"), _("Could not join chat room"), _("You have to ask for invitation from another chat " - "participant")); + "participant"), NULL); } components = ggp_chat_info_defaults(gc, ggp_chat_get_name_from_id(id));