21 Oct
2024
21 Oct
'24
9:54 p.m.
From: Semenov Herman (Семенов Герман)<GermanAizek(a)yandex.ru> --- dlls/wbemprox/query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wbemprox/query.c b/dlls/wbemprox/query.c index a6599334f58..b019b43d1e8 100644 --- a/dlls/wbemprox/query.c +++ b/dlls/wbemprox/query.c @@ -96,7 +96,7 @@ void destroy_view( struct view *view ) static BOOL eval_like( const WCHAR *text, const WCHAR *pattern ) { - if (wcsstr( pattern, L"[" )) FIXME( "character ranges (i.e. [abc], [^a-z]) are not supported\n" ); + if (wcschr( pattern, '[' )) FIXME( "character ranges (i.e. [abc], [^a-z]) are not supported\n" ); while (*text) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6158