diff options
Diffstat (limited to 'wildmatch.c')
-rw-r--r-- | wildmatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wildmatch.c b/wildmatch.c index 57c8765805..d074c1be10 100644 --- a/wildmatch.c +++ b/wildmatch.c @@ -272,8 +272,7 @@ static int dowild(const uchar *p, const uchar *text, unsigned int flags) } /* Match the "pattern" against the "text" string. */ -int wildmatch(const char *pattern, const char *text, - unsigned int flags, struct wildopts *wo) +int wildmatch(const char *pattern, const char *text, unsigned int flags) { return dowild((const uchar*)pattern, (const uchar*)text, flags); } |