From 0c409aa290abdfbf3918b226414fb47b61c6da76 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 21 Nov 2023 20:41:36 +0100 Subject: [PATCH] input/LastInputStream: use CoarseTimerEvent --- src/input/LastInputStream.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/LastInputStream.hxx b/src/input/LastInputStream.hxx index 6fadfcb67..7a7898cc9 100644 --- a/src/input/LastInputStream.hxx +++ b/src/input/LastInputStream.hxx @@ -6,7 +6,7 @@ #include "Ptr.hxx" #include "thread/Mutex.hxx" -#include "event/TimerEvent.hxx" +#include "event/CoarseTimerEvent.hxx" #include @@ -25,7 +25,7 @@ class LastInputStream { InputStreamPtr is; - TimerEvent close_timer; + CoarseTimerEvent close_timer; public: explicit LastInputStream(EventLoop &event_loop) noexcept;