summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2021-12-29 16:56:26 +0000
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2021-12-29 16:57:00 +0000
commit8189c1a529ae1ef2d686146093c27099c91f5b47 (patch)
tree7ff7a3be74d2df9a0cb0e8084660d0a303151a14
parente5d3319693f2946ffdabbbefa8c3ed3f8881d2ae (diff)
downloadefl-8189c1a529ae1ef2d686146093c27099c91f5b47.tar.gz
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
-rw-r--r--src/lib/eio/eio_monitor_poll.c4
1 files 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