[vlc-commits] croppadd: use correct shortname 'croppadd'
    Jean-Paul Saman 
    git at videolan.org
       
    Thu Dec 12 14:38:15 CET 2013
    
    
  
vlc | branch: master | Jean-Paul Saman <jean-paul.saman at m2x.nl> | Thu Dec 12 14:22:35 2013 +0100| [f498a8188853ba670c618fcc6767a48208e5c58b] | committer: Jean-Paul Saman
croppadd: use correct shortname 'croppadd'
The shortname was 'cropadd' while the module was compiled as 'croppadd' (notice the extra 'p').
The module was correctly build, but was not loadable
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f498a8188853ba670c618fcc6767a48208e5c58b
---
 modules/video_filter/croppadd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_filter/croppadd.c b/modules/video_filter/croppadd.c
index e22384a..2ed34cd 100644
--- a/modules/video_filter/croppadd.c
+++ b/modules/video_filter/croppadd.c
@@ -75,7 +75,7 @@ static picture_t *Filter( filter_t *, picture_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin ()
-    set_shortname( N_("Cropadd") )
+    set_shortname( N_("Croppadd") )
     set_description( N_("Video cropping filter") )
     set_capability( "video filter2", 0 )
     set_callbacks( OpenFilter, CloseFilter )
    
    
More information about the vlc-commits
mailing list