From 12d0a5ff652c01366cf86d3fae39bd8532e61bf3 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 20 May 2010 16:26:50 +0000 Subject: [PATCH] Did not mean to commit this minor change; it turned out to be unnecessary --- fastlib/trunk/fastlib/fx/fx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlib/trunk/fastlib/fx/fx.c b/fastlib/trunk/fastlib/fx/fx.c index 932cdb9cb8..fee543102c 100644 --- a/fastlib/trunk/fastlib/fx/fx.c +++ b/fastlib/trunk/fastlib/fx/fx.c @@ -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);