commit 2b20ce64a869e112be68217f1d44ca2c870d0d0e
Author: Fabian Greffrath <fabian@greffrath.com>
AuthorDate: Mon Dec 3 13:18:28 2018 +0100
Commit: Fabian Greffrath <fabian@greffrath.com>
CommitDate: Mon Dec 3 13:18:28 2018 +0100
glob: fix function prototype for I_StartGlob() in the non-native case
---
src/i_glob.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/i_glob.c b/src/i_glob.c
index df69316d..9df9b611 100644
--- a/src/i_glob.c
+++ b/src/i_glob.c
@@ -348,7 +348,7 @@ const char *I_NextGlob(glob_t *glob)
#warning No native implementation of file globbing.
-glob_t *I_StartGlob(const char *directory, const char *glob)
+glob_t *I_StartGlob(const char *directory, const char *glob, int flags)
{
return NULL;
}