Mercurial > mplayer.hg
changeset 37192:277b0288b0f9
dmo.c: Remove cast that is not a good idea.
author | reimar |
---|---|
date | Sat, 27 Sep 2014 18:44:46 +0000 |
parents | 5b78a5e38218 |
children | 82a15e343f94 |
files | loader/dmo/dmo.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/dmo/dmo.c Sat Sep 27 18:44:45 2014 +0000 +++ b/loader/dmo/dmo.c Sat Sep 27 18:44:46 2014 +0000 @@ -62,7 +62,7 @@ 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";