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

Fix warnings

parent 9fc1c6d1
...@@ -87,7 +87,7 @@ uint32_t CPUCapabilities( void ); ...@@ -87,7 +87,7 @@ uint32_t CPUCapabilities( void );
* @param psz_type object type name * @param psz_type object type name
* @return the created object, or NULL. * @return the created object, or NULL.
*/ */
extern vlc_object_t * extern void *
vlc_custom_create (vlc_object_t *p_this, size_t i_size, int i_type, vlc_custom_create (vlc_object_t *p_this, size_t i_size, int i_type,
const char *psz_type); const char *psz_type);
......
...@@ -104,8 +104,8 @@ static void vlc_object_yield_locked( vlc_object_t *p_this ); ...@@ -104,8 +104,8 @@ static void vlc_object_yield_locked( vlc_object_t *p_this );
static vlc_mutex_t structure_lock; static vlc_mutex_t structure_lock;
static vlc_object_internals_t global_internals; static vlc_object_internals_t global_internals;
vlc_object_t *vlc_custom_create( vlc_object_t *p_this, size_t i_size, void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
int i_type, const char *psz_type ) int i_type, const char *psz_type )
{ {
vlc_object_t *p_new; vlc_object_t *p_new;
vlc_object_internals_t *p_priv; vlc_object_internals_t *p_priv;
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <vlc_block.h> #include <vlc_block.h>
#include <vlc_filter.h> #include <vlc_filter.h>
#include <vlc_osd.h> #include <vlc_osd.h>
#include "../libvlc.h"
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
......
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