Changeset 58a1d71baee1aac656ff54356104261d780e4a6d

Show
Ignore:
Timestamp:
05/14/08 19:04:16 (2 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1210784656 +0300
git-parent:

[82e52ea89110535cad86fac7ab77e17bc7101100]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1210784656 +0300
Message:

Remove useless constant

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/objects.c

    r381904b r58a1d71  
    6464 
    6565/***************************************************************************** 
    66  * Constants 
    67  *****************************************************************************/ 
    68  
    69 const vlc_destructor_t kVLCDestructor = NULL; 
    70  
    71 /***************************************************************************** 
    7266 * Local prototypes 
    7367 *****************************************************************************/ 
     
    171165    vlc_spin_init( &p_priv->ref_spin ); 
    172166    p_priv->i_refcount = 1; 
    173     p_priv->pf_destructor = kVLCDestructor
     167    p_priv->pf_destructor = NULL
    174168    p_priv->b_thread = false; 
    175169    p_new->p_parent = NULL; 
     
    322316    vlc_object_internals_t *p_priv = vlc_internals( p_this ); 
    323317 
    324     /* Automatically detach the object from its parents */ 
     318    /* Automatically detach the object from its parent */ 
    325319    if( p_this->p_parent ) vlc_object_detach( p_this ); 
    326320