Fix typo in comctrl32.animate.c

Rolf Kalbermatter rolf.kalbermatter at citeng.com
Thu Dec 12 16:12:58 CST 2002


Changelog
  * dlls/ comctrl32/animate.c
    Typo found by compiling with standard MSVC warning level

  I'm not very strong with standard C evaluation of multiple operands,
  but this might be a bug!
 
Rolf Kalbermatter

Index: dlls/comctl32/animate.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/animate.c,v
retrieving revision 1.43
diff -u -r1.43 animate.c
--- dlls/comctl32/animate.c	2 Dec 2002 18:11:00 -0000	1.43
+++ dlls/comctl32/animate.c	12 Dec 2002 22:06:10 -0000
@@ -438,7 +438,7 @@
         DWORD threadID;
 
 	TRACE("Using an animation thread\n");
-        infoPtr->hThread = CreateThread(0,0,ANIMATE_AnimationThread,(LPVOID)infoPtr,0,0 &threadID);
+        infoPtr->hThread = CreateThread(0,0,ANIMATE_AnimationThread,(LPVOID)infoPtr, 0, &threadID);
         if(!infoPtr->hThread)
         {
            ERR("Could not create animation thread!\n");




More information about the wine-patches mailing list