dlls/quartz/pin.c warning fix (RESEND)

Gerald Pfeifer gerald at pfeifer.com
Sat Aug 30 05:38:57 CDT 2008


---------- Forwarded message ----------
From: Gerald Pfeifer <gerald at pfeifer.com>
To: wine-patches at winehq.org
Date: Fri, 22 Aug 2008 00:30:58
Subject: dlls/quartz/pin.c warning fix

This is one of two warnings regarding missing return statements
left, as we discusssed some weeks ago.  Must have missed this one.

Gerald


ChangeLog:
Add return statement to PullPin_Thread_Main().

Index: dlls/quartz/pin.c
===================================================================
RCS file: /home/wine/wine/dlls/quartz/pin.c,v
retrieving revision 1.68
diff -u -3 -p -r1.68 pin.c
--- dlls/quartz/pin.c	21 Jul 2008 13:53:39 -0000	1.68
+++ dlls/quartz/pin.c	21 Aug 2008 22:28:56 -0000
@@ -1611,6 +1611,7 @@ static DWORD WINAPI PullPin_Thread_Main(
         default: ERR("Unknown state request: %d\n", This->state); break;
         }
     }
+    return 0;
 }
 
 static HRESULT PullPin_InitProcessing(PullPin * This)



More information about the wine-patches mailing list