Fix unused variable warnings in testrecurse

This commit is contained in:
Nick Wellnhofer 2017-10-21 14:07:38 +02:00
parent a4864c2f98
commit 154824ee5e

View File

@ -69,8 +69,8 @@ typedef struct
} glob_t;
#define GLOB_DOOFFS 0
static int glob(const char *pattern, int flags,
int errfunc(const char *epath, int eerrno),
static int glob(const char *pattern, ATTRIBUTE_UNUSED int flags,
ATTRIBUTE_UNUSED int errfunc(const char *epath, int eerrno),
glob_t *pglob) {
glob_t *ret;
WIN32_FIND_DATA FindFileData;