commit | 3543d51c7f2a37768fb646f6105a29135f66310a | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Fri Aug 03 00:48:13 2007 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Aug 03 12:44:19 2007 +0200 |
tree | fb2dfd2dd6f24d15dbc79cce2cb2eaf602922646 | |
parent | d5ce0846862de432c211de5315865d41f0f4610f [diff] |
oleaut32: Fix a signed/unsigned mismatch.
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 @@ return E_POINTER; switch (This->desc.picType) { - case PICTYPE_UNINITIALIZED: + case (UINT)PICTYPE_UNINITIALIZED: case PICTYPE_NONE: *phandle = 0; hres = S_FALSE;