Did not mean to commit this minor change; it turned out to be unnecessary

This commit is contained in:
Ryan Curtin
2010-05-20 16:26:50 +00:00
parent 1b0b1187c3
commit 12d0a5ff65
+2 -2
View File
@@ -1780,7 +1780,7 @@ static void fx__fill_docs(fx_module *mod, const fx_module_doc *doc)
}
}
static void fx__parse_cmd_line(fx_module *root, int argc, char *argv[], const fx_module_doc* doc)
static void fx__parse_cmd_line(fx_module *root, int argc, char *argv[])
{
int i;
@@ -1953,7 +1953,7 @@ fx_module *fx_init(int argc, char *argv[], const fx_module_doc *doc)
/* Set argc = 0 to omit command line parsing */
if (argc > 0) {
fx__parse_cmd_line(root, argc - 1, argv + 1, doc);
fx__parse_cmd_line(root, argc - 1, argv + 1);
if (fx_param_exists(root, "help")) {
fx__std_help(argv[0], fx_param_str_req(root, "help"), doc);