diff options
Diffstat (limited to 'src/shared/strv.c')
-rw-r--r-- | src/shared/strv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/strv.c b/src/shared/strv.c index 2268bf61db..e27ac68151 100644 --- a/src/shared/strv.c +++ b/src/shared/strv.c @@ -693,7 +693,7 @@ char **strv_reverse(char **l) { return l; } -bool strv_fnmatch(const char *s, char* const* patterns, int flags) { +bool strv_fnmatch(char* const* patterns, const char *s, int flags) { char* const* p; STRV_FOREACH(p, patterns) |