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 74c5927257bfd5240a02e657f0abbae5a3e66448
Author: Kim Woelders <[email protected]>
AuthorDate: Tue Mar 24 06:52:16 2026 +0100
pagers: Forgot cast
---
src/pager.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pager.c b/src/pager.c
index e16b1ac4..41fda6db 100644
--- a/src/pager.c
+++ b/src/pager.c
@@ -588,7 +588,7 @@ PagerUpdate(Pager *p, int why, int x1, int y1, int x2, int y2)
static int
PagerFlashTimer(void *data)
{
- Pager *p = data;
+ Pager *p = (Pager *) data;
p->flash_count = !p->flash_count;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.