[MPlayer-cvslog] r37288 - trunk/loader/dmo/dmo.c
reimar
subversion at mplayerhq.hu
Sat Sep 27 20:44:46 CEST 2014
Author: reimar
Date: Sat Sep 27 20:44:46 2014
New Revision: 37288
Log:
dmo.c: Remove cast that is not a good idea.
Modified:
trunk/loader/dmo/dmo.c
Modified: trunk/loader/dmo/dmo.c
==============================================================================
--- trunk/loader/dmo/dmo.c Sat Sep 27 20:44:45 2014 (r37287)
+++ trunk/loader/dmo/dmo.c Sat Sep 27 20:44:46 2014 (r37288)
@@ -62,7 +62,7 @@ DMO_Filter* DMO_FilterCreate(const char*
em = "could not open DMO DLL";
break;
}
- func = (GETCLASS)GetProcAddress((unsigned)This->m_iHandle, "DllGetClassObject");
+ func = (GETCLASS)GetProcAddress(This->m_iHandle, "DllGetClassObject");
if (!func)
{
em = "illegal or corrupt DMO DLL";
More information about the MPlayer-cvslog
mailing list