Solved a little regression that was causing AIM to crash.

This commit is contained in:
barrett 2012-03-17 14:01:00 +00:00
parent 2f142c0d67
commit c5f730a8b3
2 changed files with 2 additions and 2 deletions

View File

@ -298,7 +298,7 @@ AIMProtocol::WaitForData(void* aimProtocol)
void
AIMProtocol::GotMessage(void* imcomm, char* who, char* recvmsg)
AIMProtocol::GotMessage(void* imcomm, char* who, int aut, char* recvmsg)
{
BMessage msg(IM_MESSAGE);
msg.AddInt32("im_what", IM_MESSAGE_RECEIVED);

View File

@ -37,7 +37,7 @@ public:
static int32 WaitForData(void*);
static void GotMessage(void*, char*, char*);
static void GotMessage(void*, char*, int, char*);
static void BuddyOnline(void*, char*);
static void BuddyOffline(void*, char*);
static void BuddyAway(void*, char*);