Fixed incorrect getopt() specification: -c and -H don't have arguments.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24785 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -61,7 +61,7 @@ main(int argc, char *argv[])
|
|||||||
};
|
};
|
||||||
|
|
||||||
opterr = 0; /* don't print errors */
|
opterr = 0; /* don't print errors */
|
||||||
c = getopt_long(argc, argv, "h:i:c:H:f:", long_options, NULL);
|
c = getopt_long(argc, argv, "h:i:cHf:", long_options, NULL);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user