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:
Ingo Weinhold
2008-04-03 23:54:55 +00:00
parent 7c529c2415
commit 702421fa41
+1 -1
View File
@@ -61,7 +61,7 @@ main(int argc, char *argv[])
};
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)
break;