[vlc-devel] commit: config: Flag unused params. (Pierre d'Herbemont )

git version control git at videolan.org
Thu Aug 20 16:43:33 CEST 2009


vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Thu Aug 20 15:21:36 2009 +0200| [c4eebb47282d10b8dbff88ecf1ca4dd7b0aedd40] | committer: Pierre d'Herbemont 

config: Flag unused params.

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

 src/config/core.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/config/core.c b/src/config/core.c
index 8652d4e..c7351ad 100644
--- a/src/config/core.c
+++ b/src/config/core.c
@@ -409,6 +409,7 @@ void __config_PutFloat( vlc_object_t *p_this,
  *****************************************************************************/
 module_config_t *config_FindConfig( vlc_object_t *p_this, const char *psz_name )
 {
+    VLC_UNUSED(p_this);
     module_t *p_parser;
 
     if( !psz_name ) return NULL;
@@ -533,6 +534,7 @@ void config_UnsetCallbacks( module_config_t *p_new, size_t n )
  *****************************************************************************/
 void __config_ResetAll( vlc_object_t *p_this )
 {
+    VLC_UNUSED(p_this);
     module_t *p_module;
     module_t **list = module_list_get (NULL);
 




More information about the vlc-devel mailing list