diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-04 18:08:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-04 18:08:19 -0700 |
commit | b51e5466f7a125db873edd1fa9bd3881d7e98aad (patch) | |
tree | d7e03c0729bb398e0a7b8e9603751c0db0385f89 /src/ao_log.c | |
parent | 9e5e4c1ad82d621ceb7286f72c87eeaf5976f9bf (diff) |
altos: Shrink help text
Reduce const space taken by command help text.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_log.c')
-rw-r--r-- | src/ao_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ao_log.c b/src/ao_log.c index 433e9c3a..71900490 100644 --- a/src/ao_log.c +++ b/src/ao_log.c @@ -262,8 +262,8 @@ ao_log_delete(void) __reentrant } __code struct ao_cmds ao_log_cmds[] = { - { ao_log_list, "l\0List stored flight logs" }, - { ao_log_delete, "d <flight-number>\0Delete stored flight" }, + { ao_log_list, "l\0List flight logs" }, + { ao_log_delete, "d <flight-number>\0Delete flight" }, { 0, NULL }, }; |