Commit b5157c52 authored by Alexandre Julliard's avatar Alexandre Julliard

oledb32/tests: Fix a constant conversion warning.

parent 863da013
......@@ -3092,7 +3092,7 @@ static void test_getconversionsize(void)
SAFEARRAYBOUND rgsabound[1];
int i4 = 200;
WORD i2 = 201;
char i1 = 203;
char i1 = (char)203;
FLOAT f4 = 1.0;
LONGLONG i8 = 202;
DATE dbdate;
......
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