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:
parent
085ed64df6
commit
298c64c6eb
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue