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
This commit is contained in:
Vincent Torri 2021-12-29 16:56:26 +00:00 committed by Carsten Haitzler (Rasterman)
parent e5d3319693
commit 8189c1a529
1 changed files with 2 additions and 2 deletions

View File

@ -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