[vlc-commits] puzzle: add missing static

Thomas Guillem git at videolan.org
Tue Apr 11 15:19:01 CEST 2017


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Apr 11 15:14:17 2017 +0200| [5f24d114aa3a7d491536bc58cb064cd4e2d875d3] | committer: Thomas Guillem

puzzle: add missing static

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

 modules/video_filter/puzzle.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/video_filter/puzzle.c b/modules/video_filter/puzzle.c
index c5cf98678a..2a041986b1 100644
--- a/modules/video_filter/puzzle.c
+++ b/modules/video_filter/puzzle.c
@@ -78,8 +78,8 @@ const char *const ppsz_rotation_descriptions[] = { N_("0"), N_("0/180"), N_("0/9
 
 #define CFG_PREFIX "puzzle-"
 
-int  Open ( vlc_object_t * );
-void Close( vlc_object_t * );
+static int  Open ( vlc_object_t * );
+static void Close( vlc_object_t * );
 
 vlc_module_begin()
     set_description( N_("Puzzle interactive game video filter") )
@@ -125,7 +125,7 @@ const char *const ppsz_filter_options[] = {
 /**
  * Open the filter
  */
-int Open( vlc_object_t *p_this )
+static int Open( vlc_object_t *p_this )
 {
     filter_t *p_filter = (filter_t *)p_this;
     filter_sys_t *p_sys;
@@ -212,7 +212,7 @@ int Open( vlc_object_t *p_this )
 /**
  * Close the filter
  */
-void Close( vlc_object_t *p_this ) {
+static void Close( vlc_object_t *p_this ) {
     filter_t *p_filter = (filter_t *)p_this;
     filter_sys_t *p_sys = p_filter->p_sys;
 



More information about the vlc-commits mailing list