comparison loader/dmo/dmo.c @ 37192:277b0288b0f9

dmo.c: Remove cast that is not a good idea.
author reimar
date Sat, 27 Sep 2014 18:44:46 +0000
parents 9fc9d1e788aa
children 82a15e343f94
comparison
equal deleted inserted replaced
37191:5b78a5e38218 37192:277b0288b0f9
60 if (!This->m_iHandle) 60 if (!This->m_iHandle)
61 { 61 {
62 em = "could not open DMO DLL"; 62 em = "could not open DMO DLL";
63 break; 63 break;
64 } 64 }
65 func = (GETCLASS)GetProcAddress((unsigned)This->m_iHandle, "DllGetClassObject"); 65 func = (GETCLASS)GetProcAddress(This->m_iHandle, "DllGetClassObject");
66 if (!func) 66 if (!func)
67 { 67 {
68 em = "illegal or corrupt DMO DLL"; 68 em = "illegal or corrupt DMO DLL";
69 break; 69 break;
70 } 70 }