Francois Gouget : oleaut32: Fix a signed/unsigned mismatch.
Module: wine Branch: master Commit: 3543d51c7f2a37768fb646f6105a29135f66310a URL: http://source.winehq.org/git/wine.git/?a=commit;h=3543d51c7f2a37768fb646f610... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Aug 3 00:48:13 2007 +0200 oleaut32: Fix a signed/unsigned mismatch. --- dlls/oleaut32/olepicture.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/oleaut32/olepicture.c b/dlls/oleaut32/olepicture.c index a7dc158..ca46d01 100644 --- a/dlls/oleaut32/olepicture.c +++ b/dlls/oleaut32/olepicture.c @@ -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;
participants (1)
-
Alexandre Julliard