[vlc-commits] motion: add missing static
Thomas Guillem
git at videolan.org
Tue Apr 11 15:18:57 CEST 2017
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Apr 11 15:14:00 2017 +0200| [f7d8549c2f24b425a8c194d3d2987eb373f28f59] | committer: Thomas Guillem
motion: add missing static
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f7d8549c2f24b425a8c194d3d2987eb373f28f59
---
modules/control/motion.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/control/motion.c b/modules/control/motion.c
index 6c2144b5c9..7491cadb9c 100644
--- a/modules/control/motion.c
+++ b/modules/control/motion.c
@@ -80,7 +80,7 @@ vlc_module_end ()
/*****************************************************************************
* OpenIntf: initialise interface
*****************************************************************************/
-int Open ( vlc_object_t *p_this )
+static int Open ( vlc_object_t *p_this )
{
intf_thread_t *p_intf = (intf_thread_t *)p_this;
intf_sys_t *p_sys = malloc( sizeof( *p_sys ) );
@@ -109,7 +109,7 @@ error:
/*****************************************************************************
* CloseIntf: destroy interface
*****************************************************************************/
-void Close ( vlc_object_t *p_this )
+static void Close ( vlc_object_t *p_this )
{
intf_thread_t *p_intf = (intf_thread_t *)p_this;
intf_sys_t *p_sys = p_intf->p_sys;
More information about the vlc-commits
mailing list