From 8189c1a529ae1ef2d686146093c27099c91f5b47 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 29 Dec 2021 16:56:26 +0000 Subject: [PATCH] Eio: fix functions name Summary: 2 functions has wrong names, hence link error Test Plan: compilation Reviewers: raster Reviewed By: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12312 @fix --- src/lib/eio/eio_monitor_poll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eio/eio_monitor_poll.c b/src/lib/eio/eio_monitor_poll.c index 86b65aae5b..4ba420e65e 100644 --- a/src/lib/eio/eio_monitor_poll.c +++ b/src/lib/eio/eio_monitor_poll.c @@ -316,9 +316,9 @@ void eio_monitor_backend_del(Eio_Monitor *monitor) eio_monitor_fallback_del(monitor); } -Eina_Bool eio_monitor_content_check(const Eio_Monitor *monitor, const char *path) +Eina_Bool eio_monitor_context_check(const Eio_Monitor *monitor, const char *path) { - return eio_monitor_fallback_content_check(monitor, path); + return eio_monitor_fallback_context_check(monitor, path); } #endif