This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dev/dimmus/test
in repository efl.
View the commit online.
commit b79c0c5aec51e803424108d529052836d8fb7e9f
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 09:27:27 2024 +0500
ecore: fix warning about sometimes set but unused parameters
---
src/lib/ecore_x/ecore_x_vsync.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/ecore_x/ecore_x_vsync.c b/src/lib/ecore_x/ecore_x_vsync.c
index 0f7a7368b2..d8fd22abc5 100644
--- a/src/lib/ecore_x/ecore_x_vsync.c
+++ b/src/lib/ecore_x/ecore_x_vsync.c
@@ -370,8 +370,8 @@ _drm_send_time(double t)
static void
_drm_vblank_handler(int fd EINA_UNUSED,
unsigned int frame,
- unsigned int sec,
- unsigned int usec,
+ unsigned int sec EINA_UNUSED,
+ unsigned int usec EINA_UNUSED,
void *data EINA_UNUSED)
{
if (drm_event_is_busy)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.