From 80ebc9982edd3fa284385cf76b221a37cdd99c26 Mon Sep 17 00:00:00 2001 From: Mathias Tillman Date: Wed, 9 Mar 2022 17:27:42 +0100 Subject: [PATCH] Fix another lint warning. --- sunshine/platform/linux/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunshine/platform/linux/input.cpp b/sunshine/platform/linux/input.cpp index 1f9840fb..c0222927 100644 --- a/sunshine/platform/linux/input.cpp +++ b/sunshine/platform/linux/input.cpp @@ -720,7 +720,7 @@ inline void rumbleIterate(std::vector &effects, std::vector for(auto x = 0; x < polls_tmp.size(); ++x) { auto pfd = polls_tmp[x].fd; for(auto y = 0; y < polls.size(); ++y) { - if (pfd == polls[y].el.fd) { + if(pfd == polls[y].el.fd) { polls[y].el.revents = polls_tmp[x].revents; } }