mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
Fix BeOS build. Please try to patch all platforms when breaking things like this :p
svn path=/trunk/netsurf/; revision=6541
This commit is contained in:
parent
22d8b8e512
commit
e89384911f
@ -99,12 +99,12 @@ schedule(int t, void (*callback)(void *p), void *p)
|
||||
callbacks->AddItem(cb);
|
||||
}
|
||||
|
||||
void
|
||||
bool
|
||||
schedule_run(void)
|
||||
{
|
||||
LOG(("schedule_run()"));
|
||||
if (callbacks == NULL)
|
||||
return; /* Nothing to do */
|
||||
return false; /* Nothing to do */
|
||||
|
||||
bigtime_t now = system_time();
|
||||
earliest_callback_timeout = B_INFINITE_TIMEOUT;
|
||||
@ -128,4 +128,5 @@ schedule_run(void)
|
||||
callbacks->RemoveItem(cb);
|
||||
free(cb);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user