bug 282031. [BEOS] Our nsToolkit::CallMethod is broken. r=sergei_d, sr=dougt

This commit is contained in:
dougt%meer.net 2005-02-19 18:41:33 +00:00
parent b7ac7d591a
commit 55e79c16fa

View File

@ -1282,7 +1282,7 @@ _pl_NativeNotify(PLEventQueue* self)
struct ThreadInterfaceData
{
void *data;
int32 sync;
thread_id waitingThread;
};
static PRStatus
@ -1290,7 +1290,7 @@ _pl_NativeNotify(PLEventQueue* self)
{
struct ThreadInterfaceData id;
id.data = self;
id.sync = false;
id.waitingThread = 0;
write_port(self->eventport, 'natv', &id, sizeof(id));
return PR_SUCCESS; /* Is this correct? */