quartz: Remove unneeded casts

Andrew Talbot andrew.talbot at talbotville.com
Wed Jan 16 15:57:19 CST 2008


Changelog:
    quartz: Remove unneeded casts.

diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c
index 7f52b95..88ac7ad 100644
--- a/dlls/quartz/systemclock.c
+++ b/dlls/quartz/systemclock.c
@@ -113,7 +113,7 @@ static DWORD WINAPI SystemClockAdviseThread(LPVOID lpParam) {
     /** First SingleShots Advice: sorted list */
     for (it = This->pSingleShotAdvise; NULL != it && (it->rtBaseTime + it->rtIntervalTime) <= curTime; it = it->next) {
       /** send event ... */
-      SetEvent((HANDLE) it->hEvent);
+      SetEvent(it->hEvent);
       /** ... and Release it */
       QUARTZ_RemoveAviseEntryFromQueue(This, it);
       CoTaskMemFree(it);
@@ -125,7 +125,7 @@ static DWORD WINAPI SystemClockAdviseThread(LPVOID lpParam) {
       if (it->rtBaseTime <= curTime) {
 	DWORD nPeriods = (DWORD) ((curTime - it->rtBaseTime) / it->rtIntervalTime);
 	/** Release the semaphore ... */
-	ReleaseSemaphore((HANDLE) it->hEvent, nPeriods, NULL);
+	ReleaseSemaphore(it->hEvent, nPeriods, NULL);
 	/** ... and refresh time */
 	it->rtBaseTime += nPeriods * it->rtIntervalTime;
 	/*assert( it->rtBaseTime + it->rtIntervalTime < curTime );*/



More information about the wine-patches mailing list