Commit 207ae9f5 authored by Alexandre Julliard's avatar Alexandre Julliard

sfnt2fon: Use getopt_long to allow arbitrary option order.

parent ab588410
...@@ -646,7 +646,7 @@ static char **parse_options( int argc, char **argv ) ...@@ -646,7 +646,7 @@ static char **parse_options( int argc, char **argv )
{ {
int optc; 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) switch(optc)
{ {
......
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