Commit b15db2c7 authored by David Fuhrmann's avatar David Fuhrmann

cachegen: Remove remnants of -f option

The -f option of cachegen was removed in d71c794d.

refs #16211
parent 6db91d99
...@@ -41,7 +41,7 @@ static void version (void) ...@@ -41,7 +41,7 @@ static void version (void)
static void usage (const char *path) static void usage (const char *path)
{ {
printf ( printf (
"Usage: %s [-f] <path>\n" "Usage: %s <path>\n"
"Generate the LibVLC plugins cache for the specified plugins directory.\n", "Generate the LibVLC plugins cache for the specified plugins directory.\n",
path); path);
} }
...@@ -60,7 +60,7 @@ int main (int argc, char *argv[]) ...@@ -60,7 +60,7 @@ int main (int argc, char *argv[])
int c; int c;
while ((c = getopt_long (argc, argv, "fhV", opts, NULL)) != -1) while ((c = getopt_long (argc, argv, "hV", opts, NULL)) != -1)
switch (c) switch (c)
{ {
case 'h': case 'h':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment