Alexandre Julliard : oledb32/tests: Fix a constant conversion warning.

Alexandre Julliard julliard at winehq.org
Tue Dec 17 15:58:20 CST 2019


Module: wine
Branch: master
Commit: b5157c528d220fea70c6f227831eea008840ed1f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b5157c528d220fea70c6f227831eea008840ed1f

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Dec 17 16:49:56 2019 +0100

oledb32/tests: Fix a constant conversion warning.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/oledb32/tests/convert.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/oledb32/tests/convert.c b/dlls/oledb32/tests/convert.c
index 28401e68c9..8ec64d40ae 100644
--- a/dlls/oledb32/tests/convert.c
+++ b/dlls/oledb32/tests/convert.c
@@ -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;




More information about the wine-cvs mailing list