1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:48:12 +00:00

CEventLoop: Add a missing initializer to EventLoopTimer.

This commit is contained in:
Andreas Kling 2019-08-01 10:49:31 +02:00
parent 2923d39106
commit caeb4b7a7e

View file

@ -73,7 +73,7 @@ private:
struct EventLoopTimer {
int timer_id { 0 };
int interval { 0 };
timeval fire_time;
timeval fire_time { 0, 0 };
bool should_reload { false };
WeakPtr<CObject> owner;