Commit 893a64a4 authored by Jean-Paul Saman's avatar Jean-Paul Saman

mozilla: use correct cast for VlcPlugin *

parent 5bd53a4f
......@@ -167,8 +167,7 @@ int16 NPP_HandleEvent( NPP instance, void * event )
return false;
}
VlcPlugin *p_plugin = (VlcPlugin*)instance->pdata;
VlcPlugin* p_plugin = reinterpret_cast<VlcPlugin*>(instance->pdata);
if( p_plugin == NULL )
{
return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment