This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 504b75bc702a1fad2240b58955d16cc6525d24ae
Author: Kim Woelders <[email protected]>
AuthorDate: Sat Jul 2 18:20:05 2022 +0200
events: Trivial cleanup
---
src/events.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/events.c b/src/events.c
index 1c1bf310..642726da 100644
--- a/src/events.c
+++ b/src/events.c
@@ -668,9 +668,8 @@ EventsCompress(XEvent * evq, int count)
case MotionNotify:
/* Discard all but last motion event */
- j = i - 1;
n = 0;
- for (; j >= 0; j--)
+ for (j = i - 1; j >= 0; j--)
{
ev2 = evq + j;
if (ev2->type == type)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.