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

Dead code

parent 393acdb4
...@@ -81,9 +81,6 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int ); ...@@ -81,9 +81,6 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int );
static void vlc_object_destroy( vlc_object_t *p_this ); static void vlc_object_destroy( vlc_object_t *p_this );
static void vlc_object_detach_unlocked (vlc_object_t *p_this); static void vlc_object_detach_unlocked (vlc_object_t *p_this);
#ifndef NDEBUG
static void vlc_object_dump( vlc_object_t *p_this );
#endif
/***************************************************************************** /*****************************************************************************
* Local structure lock * Local structure lock
...@@ -920,19 +917,6 @@ void vlc_list_release( vlc_list_t *p_list ) ...@@ -920,19 +917,6 @@ void vlc_list_release( vlc_list_t *p_list )
free( p_list ); free( p_list );
} }
/*****************************************************************************
* dump an object. (Debug function)
*****************************************************************************/
#ifndef NDEBUG
static void vlc_object_dump( vlc_object_t *p_this )
{
char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
psz_foo[0] = '|';
DumpStructure( p_this, 0, psz_foo );
}
#endif
/* Following functions are local */ /* Following functions are local */
static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode ) static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode )
......
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