Changeset 49dd062d2e4f097d3af73e0478476f7c39db1cf5

Show
Ignore:
Timestamp:
04/05/08 18:40:22 (7 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209919222 +0300
git-parent:

[9c87bdf6b71f43aa5d2667d5cc9e483e9b6bddea]

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

p_root->p_probe: unused, remove

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/libvlc.h

    r9c87bdf r49dd062  
    116116 
    117117    module_bank_t *        p_module_bank; ///< The module bank 
    118     intf_thread_t         *p_probe;       ///< Devices prober 
    119118 
    120119    /* Arch-specific variables */ 
  • src/misc/devices.c

    r449fd28 r49dd062  
    3535#include <vlc_devices.h> 
    3636 
     37static intf_thread_t *p_probe_thread = NULL; 
     38 
    3739void devices_ProbeCreate( vlc_object_t *p_this ) 
    3840{ 
    3941    intf_thread_t * p_probe; 
    40     p_this->p_libvlc_global->p_probe = NULL; 
    4142 
    4243    /* Allocate structure */ 
     
    5556    } 
    5657 
    57     p_this->p_libvlc_global->p_probe = p_probe; 
     58    p_probe_thread = p_probe; 
    5859} 
    5960