Commit a406e21b authored by Rémi Duraffort's avatar Rémi Duraffort

Fix warnings.

parent 5e59e7c5
...@@ -119,6 +119,7 @@ static int Activate( vlc_object_t *p_this ) ...@@ -119,6 +119,7 @@ static int Activate( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
void Close( vlc_object_t *p_this ) void Close( vlc_object_t *p_this )
{ {
(void)p_this;
} }
/***************************************************************************** /*****************************************************************************
...@@ -282,6 +283,8 @@ static int NTServiceUninstall( intf_thread_t *p_intf ) ...@@ -282,6 +283,8 @@ static int NTServiceUninstall( intf_thread_t *p_intf )
static void WINAPI ServiceDispatch( DWORD numArgs, char **args ) static void WINAPI ServiceDispatch( DWORD numArgs, char **args )
{ {
(void)numArgs;
(void)args;
intf_thread_t *p_intf = (intf_thread_t *)p_global_intf; intf_thread_t *p_intf = (intf_thread_t *)p_global_intf;
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
char *psz_modules, *psz_parser; char *psz_modules, *psz_parser;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment