Michael Stefaniuc : oleaut32/tests: Remove useless casts to self.

Alexandre Julliard julliard at winehq.org
Tue Mar 26 16:43:18 CDT 2019


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

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Mar 26 20:41:40 2019 +0100

oleaut32/tests: Remove useless casts to self.

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

---

 dlls/oleaut32/tests/typelib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c
index ef0c32c..a706481 100644
--- a/dlls/oleaut32/tests/typelib.c
+++ b/dlls/oleaut32/tests/typelib.c
@@ -1138,9 +1138,9 @@ static int WINAPI int_func( int a0, int a1, int a2, int a3, int a4 )
 
 static double WINAPI double_func( double a0, float a1, double a2, int a3 )
 {
-    ok( a0 == 1.2, "wrong arg0 %f\n", (double)a0 );
+    ok( a0 == 1.2, "wrong arg0 %f\n", a0 );
     ok( a1 == 3.25, "wrong arg1 %f\n", (double)a1 );
-    ok( a2 == 1.2e12, "wrong arg2 %f\n", (double)a2);
+    ok( a2 == 1.2e12, "wrong arg2 %f\n", a2);
     ok( a3 == -4433.0, "wrong arg3 %f\n", (double)a3 );
     return 4321;
 }




More information about the wine-cvs mailing list