[vlc-commits] cachegen: Remove remnants of -f option

David Fuhrmann git at videolan.org
Sat Dec 26 19:12:18 CET 2015


vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sat Dec 26 19:08:22 2015 +0100| [b15db2c780c20204c45cd9473f8e25d905dcc842] | committer: David Fuhrmann

cachegen: Remove remnants of -f option

The -f option of cachegen was removed in d71c794d.

refs #16211

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

 bin/cachegen.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/cachegen.c b/bin/cachegen.c
index 12c9fc5..4b1cc57 100644
--- a/bin/cachegen.c
+++ b/bin/cachegen.c
@@ -41,7 +41,7 @@ static void version (void)
 static void usage (const char *path)
 {
     printf (
-"Usage: %s [-f] <path>\n"
+"Usage: %s <path>\n"
 "Generate the LibVLC plugins cache for the specified plugins directory.\n",
             path);
 }
@@ -60,7 +60,7 @@ int main (int argc, char *argv[])
 
     int c;
 
-    while ((c = getopt_long (argc, argv, "fhV", opts, NULL)) != -1)
+    while ((c = getopt_long (argc, argv, "hV", opts, NULL)) != -1)
         switch (c)
         {
             case 'h':



More information about the vlc-commits mailing list