Commit ecc2c16b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix a prototype warning

parent ac40aef7
...@@ -50,8 +50,8 @@ ...@@ -50,8 +50,8 @@
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
static void* RunInterface( vlc_object_t *p_this ); static void* RunInterface( void * );
#if defined( __APPLE__ ) #if defined( __APPLE__)
static void * MonitorLibVLCDeath( vlc_object_t *p_this ); static void * MonitorLibVLCDeath( vlc_object_t *p_this );
#endif #endif
static int AddIntfCallback( vlc_object_t *, char const *, static int AddIntfCallback( vlc_object_t *, char const *,
...@@ -217,9 +217,9 @@ void intf_DestroyAll( libvlc_int_t *p_libvlc ) ...@@ -217,9 +217,9 @@ void intf_DestroyAll( libvlc_int_t *p_libvlc )
* *
* @param p_this: interface object * @param p_this: interface object
*/ */
static void* RunInterface( vlc_object_t *p_this ) static void* RunInterface( void *p_this )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = p_this;
p_intf->pf_run( p_intf ); p_intf->pf_run( p_intf );
return NULL; return NULL;
......
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