Commit 5a9be98a authored by Lucas Russo's avatar Lucas Russo

src/*/dev_io.c: fix usage information

We were printing the wrong information
inside the usage () function, causing
a "mix" in the information output.
parent b1305b72
...@@ -90,8 +90,9 @@ void print_help (char *program_name) ...@@ -90,8 +90,9 @@ void print_help (char *program_name)
"\t-s <fe_smio_id> FE SMIO ID (only valid for devio_type = fe)\n" "\t-s <fe_smio_id> FE SMIO ID (only valid for devio_type = fe)\n"
"\t-l <log_prefix> Log prefix filename\n" "\t-l <log_prefix> Log prefix filename\n"
"\t-b <broker_endpoint> Broker endpoint\n", "\t-b <broker_endpoint> Broker endpoint\n",
revision_get_build_version (), revision_get_build_user_name (), program_name,
revision_get_build_date (), program_name); revision_get_build_version (),
revision_get_build_user_name (), revision_get_build_date ());
} }
int main (int argc, char *argv[]) int main (int argc, char *argv[])
......
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