diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-11-07 17:00:51 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-11-07 17:00:51 +0000 |
commit | 43eba2f555e2a2ed0fbedeeda73dd1720437fd97 (patch) | |
tree | 86e2decd0adbcb0e92ed8aed80b0b38023e7605a /src/hci/commands/route_cmd.c | |
parent | 6871a8113f784f5fedb67f245e15699cdfb2b8f7 (diff) | |
download | ipxe-43eba2f555e2a2ed0fbedeeda73dd1720437fd97.tar.gz |
[cmdline] Generate command option help text automatically
Generate the command option help text automatically from the list of
defined options.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/commands/route_cmd.c')
-rw-r--r-- | src/hci/commands/route_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/commands/route_cmd.c b/src/hci/commands/route_cmd.c index 3b51f06b0..cc5ffc2f2 100644 --- a/src/hci/commands/route_cmd.c +++ b/src/hci/commands/route_cmd.c @@ -39,7 +39,7 @@ static struct option_descriptor route_opts[] = {}; /** "route" command descriptor */ static struct command_descriptor route_cmd = - COMMAND_DESC ( struct route_options, route_opts, 0, 0, "" ); + COMMAND_DESC ( struct route_options, route_opts, 0, 0, NULL ); /** * The "route" command |