Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonasno <jonasno@users.sourceforge.net>2010-02-19 01:01:33 +0300
committerjonasno <jonasno@users.sourceforge.net>2010-02-19 01:01:33 +0300
commitca7ad0034eb7760572223a7e120d1be2e35e34d8 (patch)
treee7d3d3dc8f8a17c9622a5c2e5afc67978699b4d2 /src/filters/reader
parentc37e22cac1d15d150c66b61fba3b79eb3f899b7e (diff)
Changed C casts to C++ casts and some code formatting corrections
Patch by XhmikosR git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1676 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/reader')
-rw-r--r--src/filters/reader/asyncreader/asyncio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/reader/asyncreader/asyncio.h b/src/filters/reader/asyncreader/asyncio.h
index 590eb9167..af52d48c3 100644
--- a/src/filters/reader/asyncreader/asyncio.h
+++ b/src/filters/reader/asyncreader/asyncio.h
@@ -180,7 +180,7 @@ class CAsyncIo
// initial static thread proc calls ThreadProc with DWORD
// param as this
static DWORD WINAPI InitialThreadProc(LPVOID pv) {
- CAsyncIo * pThis = (CAsyncIo*) pv;
+ CAsyncIo * pThis = static_cast<CAsyncIo*> (pv);
return pThis->ThreadProc();
};