From 6f1b5fc0ab9816bb8e54ce57dd86c4bea1fe1dd4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 12 Jun 2020 09:13:27 +0200 Subject: LibIPC: Actually use the new Core::Timer::restart() I just added Thanks @brynet for noticing. :^) --- Libraries/LibIPC/ClientConnection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibIPC/ClientConnection.h b/Libraries/LibIPC/ClientConnection.h index 38ccc9bf50..26c04e063e 100644 --- a/Libraries/LibIPC/ClientConnection.h +++ b/Libraries/LibIPC/ClientConnection.h @@ -162,7 +162,7 @@ public: } if (!bytes.is_empty()) - m_responsiveness_timer->start(); + m_responsiveness_timer->restart(); size_t decoded_bytes = 0; for (size_t index = 0; index < bytes.size(); index += decoded_bytes) { -- cgit v1.2.3