Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
a9eeb553
Commit
a9eeb553
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules CacheFind(): remove unused parameter
parent
38d7da29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/modules/cache.c
src/modules/cache.c
+1
-1
src/modules/modules.c
src/modules/modules.c
+1
-1
src/modules/modules.h
src/modules/modules.h
+1
-1
No files found.
src/modules/cache.c
View file @
a9eeb553
...
...
@@ -700,7 +700,7 @@ void CacheMerge( vlc_object_t *p_this, module_t *p_cache, module_t *p_module )
/*****************************************************************************
* CacheFind: finds the cache entry corresponding to a file
*****************************************************************************/
module_cache_t
*
CacheFind
(
vlc_object_t
*
p_this
,
const
char
*
psz_file
,
module_cache_t
*
CacheFind
(
const
char
*
psz_file
,
int64_t
i_time
,
int64_t
i_size
)
{
module_cache_t
**
pp_cache
;
...
...
src/modules/modules.c
View file @
a9eeb553
...
...
@@ -1084,7 +1084,7 @@ static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
* Check our plugins cache first then load plugin if needed
*/
p_cache_entry
=
CacheFind
(
p
_this
,
p
sz_file
,
i_file_time
,
i_file_size
);
CacheFind
(
psz_file
,
i_file_time
,
i_file_size
);
if
(
!
p_cache_entry
)
{
...
...
src/modules/modules.h
View file @
a9eeb553
...
...
@@ -163,6 +163,6 @@ void module_Unload (module_handle_t);
void
CacheMerge
(
vlc_object_t
*
,
module_t
*
,
module_t
*
);
void
CacheLoad
(
vlc_object_t
*
);
void
CacheSave
(
vlc_object_t
*
);
module_cache_t
*
CacheFind
(
vlc_object_t
*
,
const
char
*
,
int64_t
,
int64_t
);
module_cache_t
*
CacheFind
(
const
char
*
,
int64_t
,
int64_t
);
#endif
/* !__LIBVLC_MODULES_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment