Commit ce1325ed authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

cachegen: fix when building without getopt

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent d9c92333
......@@ -51,6 +51,7 @@ int main (int argc, char *argv[])
#ifdef _WIN32
SetErrorMode(SEM_FAILCRITICALERRORS);
#endif
#ifdef HAVE_GETOPT_H
static const struct option opts[] =
{
{ "help", no_argument, NULL, 'h' },
......@@ -73,6 +74,9 @@ int main (int argc, char *argv[])
usage (argv[0]);
return 1;
}
#else
int optind = 1;
#endif
for (int i = optind; i < argc; i++)
{
......
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