Commit 3543d51c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

oleaut32: Fix a signed/unsigned mismatch.

parent d5ce0846
......@@ -545,7 +545,7 @@ static HRESULT WINAPI OLEPictureImpl_get_hPal(IPicture *iface,
return E_POINTER;
switch (This->desc.picType) {
case PICTYPE_UNINITIALIZED:
case (UINT)PICTYPE_UNINITIALIZED:
case PICTYPE_NONE:
*phandle = 0;
hres = S_FALSE;
......
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