summaryrefslogtreecommitdiff
path: root/src/lib/ecore_x/ecore_x_vsync.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ecore_x/ecore_x_vsync.c')
-rw-r--r--src/lib/ecore_x/ecore_x_vsync.c4
1 files 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 db43d49814..546859ab70 100644
--- a/src/lib/ecore_x/ecore_x_vsync.c
+++ b/src/lib/ecore_x/ecore_x_vsync.c
@@ -15,7 +15,7 @@
#include <sys/stat.h>
#include <sys/select.h>
#include <fcntl.h>
-#include <fnmatch.h>
+#include <Eina.h>
#ifdef HAVE_PRCTL
# include <sys/prctl.h>
@@ -595,7 +595,7 @@ glob_match(const char *glob, const char *str)
{
if (!glob) return EINA_TRUE;
if (!str) return EINA_FALSE;
- if (!fnmatch(glob, str, 0)) return EINA_TRUE;
+ if (!eina_fnmatch(glob, str, 0)) return EINA_TRUE;
return EINA_FALSE;
}