diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-12 09:13:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-12 09:13:27 +0200 |
commit | 6f1b5fc0ab9816bb8e54ce57dd86c4bea1fe1dd4 (patch) | |
tree | 469ff2201b4d29846a7fa634c5700e477a85271b | |
parent | 2ce2c4810a32810f745d0b9adb6a93a0fafdb205 (diff) | |
download | serenity-6f1b5fc0ab9816bb8e54ce57dd86c4bea1fe1dd4.zip |
LibIPC: Actually use the new Core::Timer::restart() I just added
Thanks @brynet for noticing. :^)
-rw-r--r-- | Libraries/LibIPC/ClientConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |