]> git.sesse.net Git - vlc/blobdiff - modules/access_filter/bandwidth.c
Remove most stray semi-colons in module descriptions
[vlc] / modules / access_filter / bandwidth.c
index cb786772e3f68e02129904d26b5ccedf7f4b0ead..995ee8aced0754879ac46b7971e2cf287ad51b5a 100644 (file)
@@ -41,18 +41,18 @@ static void Close (vlc_object_t *);
 
 /* TODO: burst support */
 
-vlc_module_begin ();
-    set_shortname (N_("Bandwidth"));
-    set_description (N_("Bandwidth limiter"));
-    set_category (CAT_INPUT);
-    set_subcategory (SUBCAT_INPUT_ACCESS_FILTER);
-    set_capability ("access_filter", 0);
-    add_shortcut ("bandwidth");
-    set_callbacks (Open, Close);
+vlc_module_begin ()
+    set_shortname (N_("Bandwidth"))
+    set_description (N_("Bandwidth limiter"))
+    set_category (CAT_INPUT)
+    set_subcategory (SUBCAT_INPUT_ACCESS_FILTER)
+    set_capability ("access_filter", 0)
+    add_shortcut ("bandwidth")
+    set_callbacks (Open, Close)
 
     add_integer ("access-bandwidth", 65536, NULL, BANDWIDTH_TEXT,
                  BANDWIDTH_LONGTEXT, false);
-vlc_module_end();
+vlc_module_end ()
 
 static ssize_t Read (access_t *access, uint8_t *buffer, size_t len);
 static int Seek (access_t *access, int64_t offset);