]> git.sesse.net Git - vlc/blobdiff - modules/video_output/directfb.c
Remove most stray semi-colons in module descriptions
[vlc] / modules / video_output / directfb.c
index 17876afe5fb9ff5a01742094e8cae83eabaf8bb0..5d31d80a379beb5e3181d7b5c8ccb615df1a29c0 100644 (file)
@@ -65,15 +65,15 @@ struct vout_sys_t
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-vlc_module_begin();
-    set_shortname( "DirectFB" );
-    set_category( CAT_VIDEO );
-    set_subcategory( SUBCAT_VIDEO_VOUT );
-    set_description( N_("DirectFB video output http://www.directfb.org/") );
-    set_capability( "video output", 60 );
-    add_shortcut( "directfb" );
-    set_callbacks( Create, Destroy );
-vlc_module_end();
+vlc_module_begin ()
+    set_shortname( "DirectFB" )
+    set_category( CAT_VIDEO )
+    set_subcategory( SUBCAT_VIDEO_VOUT )
+    set_description( N_("DirectFB video output http://www.directfb.org/") )
+    set_capability( "video output", 60 )
+    add_shortcut( "directfb" )
+    set_callbacks( Create, Destroy )
+vlc_module_end ()
 
 
 static int Create( vlc_object_t *p_this )