Commit 44d4fb5f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

propsys: Remove useless cast to self.

parent b7ce2fc5
......@@ -206,7 +206,7 @@ HRESULT WINAPI PropVariantToInt64(REFPROPVARIANT propvarIn, LONGLONG *ret)
TRACE("%p,%p\n", propvarIn, ret);
hr = PROPVAR_ConvertNumber(propvarIn, 64, TRUE, &res);
if (SUCCEEDED(hr)) *ret = (LONGLONG)res;
if (SUCCEEDED(hr)) *ret = res;
return hr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment