[vlc-devel] commit: Remove two compilation warnings (unused variables). ( Jean-Philippe Andre )

git version control git at videolan.org
Fri Aug 22 07:49:58 CEST 2008


vlc | branch: master | Jean-Philippe Andre <jpeg at via.ecp.fr> | Fri Aug 22 01:30:37 2008 -0400| [bc9cdb46d3524d3481b0fca431fdae58d9089e8e] | committer: Jean-Philippe Andre 

Remove two compilation warnings (unused variables).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bc9cdb46d3524d3481b0fca431fdae58d9089e8e
---

 modules/access_filter/dump.c   |    1 +
 modules/access_filter/record.c |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/modules/access_filter/dump.c b/modules/access_filter/dump.c
index f6e28f6..50ccf9a 100644
--- a/modules/access_filter/dump.c
+++ b/modules/access_filter/dump.c
@@ -325,6 +325,7 @@ static int KeyHandler (vlc_object_t *obj, char const *varname,
 {
     access_t *access = data;
 
+    (void)varname;
     (void)oldval;
     (void)obj;
 
diff --git a/modules/access_filter/record.c b/modules/access_filter/record.c
index 2b6bd78..a6bc0d1 100644
--- a/modules/access_filter/record.c
+++ b/modules/access_filter/record.c
@@ -264,6 +264,7 @@ static int EventKey( vlc_object_t *p_this, char const *psz_var,
     access_t     *p_access = p_data;
     access_sys_t *p_sys = p_access->p_sys;
 
+    (void)p_this;
     (void)psz_var;
     (void)oldval;
 




More information about the vlc-devel mailing list