Fixed crashes on 32bit Windows
This commit is contained in:
parent
581cf9794d
commit
8b6c062c90
4 changed files with 3 additions and 13 deletions
|
@ -157,7 +157,7 @@ void DonateStrategy::onResultAccepted(Client *client, const SubmitResult &result
|
|||
}
|
||||
|
||||
|
||||
void DonateStrategy::idle(int64_t timeout)
|
||||
void DonateStrategy::idle(uint64_t timeout)
|
||||
{
|
||||
uv_timer_start(&m_timer, DonateStrategy::onTimer, timeout, 0);
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ protected:
|
|||
void onResultAccepted(Client *client, const SubmitResult &result, const char *error) override;
|
||||
|
||||
private:
|
||||
void idle(int64_t timeout);
|
||||
void idle(uint64_t timeout);
|
||||
void suspend();
|
||||
|
||||
static void onTimer(uv_timer_t *handle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue