Changeset a9eeb55307274d9510a55d29e1613ede8895d9bf

Show
Ignore:
Timestamp:
28/01/08 17:28:29 (10 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1201537709 +0000
git-parent:

[38d7da29c086a7a7a1e5eb4d49be0be7e744493a]

git-author:
Rafaël Carré <funman@videolan.org> 1201537709 +0000
Message:

modules CacheFind?(): remove unused parameter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/modules/cache.c

    r99fab90 ra9eeb55  
    701701 * CacheFind: finds the cache entry corresponding to a file 
    702702 *****************************************************************************/ 
    703 module_cache_t *CacheFind( vlc_object_t *p_this, const char *psz_file, 
     703module_cache_t *CacheFind( const char *psz_file, 
    704704                           int64_t i_time, int64_t i_size ) 
    705705{ 
  • src/modules/modules.c

    r1b09c02 ra9eeb55  
    10851085     */ 
    10861086    p_cache_entry = 
    1087         CacheFind( p_this, psz_file, i_file_time, i_file_size ); 
     1087        CacheFind( psz_file, i_file_time, i_file_size ); 
    10881088 
    10891089    if( !p_cache_entry ) 
  • src/modules/modules.h

    r6181746 ra9eeb55  
    164164void   CacheLoad  (vlc_object_t * ); 
    165165void   CacheSave  (vlc_object_t * ); 
    166 module_cache_t * CacheFind (vlc_object_t *, const char *, int64_t, int64_t); 
     166module_cache_t * CacheFind (const char *, int64_t, int64_t); 
    167167 
    168168#endif /* !__LIBVLC_MODULES_H */