sfnt2fon: Use getopt_long to allow arbitrary option order.

This commit is contained in:
Alexandre Julliard 2014-02-06 17:06:49 +01:00
parent ab58841091
commit 207ae9f5c2
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ static char **parse_options( int argc, char **argv )
{
int optc;
while ((optc = getopt( argc, argv, "d:ho:qr:s" )) != -1)
while ((optc = getopt_long( argc, argv, "d:ho:qr:s", NULL, NULL )) != -1)
{
switch(optc)
{