From: Semenov Herman (Семенов Герман)GermanAizek@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) {