wbemprox: Fix a typo.

Spotted by Nikolay Sivov.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2016-01-06 14:44:33 +01:00 committed by Alexandre Julliard
parent 085ed64df6
commit 298c64c6eb
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ static HRESULT eval_binary( const struct table *table, UINT row, const struct co
if (is_int( ltype )) lstr = format_int( lbuf, ltype, lval );
else lstr = (const WCHAR *)(INT_PTR)lval;
if (is_int( rtype )) rstr = format_int( rbuf, ltype, rval );
if (is_int( rtype )) rstr = format_int( rbuf, rtype, rval );
else rstr = (const WCHAR *)(INT_PTR)rval;
return eval_strcmp( expr->op, lstr, rstr, val );