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:
François Revel 2009-02-16 19:08:20 +00:00
parent 22d8b8e512
commit e89384911f
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}