[1/2] wbemprox: Fix a typo.

Hans Leidekker hans at codeweavers.com
Wed Jan 6 07:44:33 CST 2016


Spotted by Nikolay Sivov.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 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 53e1044..76f5caa 100644
--- a/dlls/wbemprox/query.c
+++ b/dlls/wbemprox/query.c
@@ -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 );
-- 
2.1.4




More information about the wine-patches mailing list