diff options
author | Anthony Towns <aj@erisian.com.au> | 2011-02-27 11:11:12 +1000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-03-07 00:01:46 -0800 |
commit | 8cdf4fb051c22b35c251d90bc288551f7c2898bf (patch) | |
tree | a3b39a462dad7f9042ff6b34bdc9ff5e0fea0dec /src/ao_packet_master.c | |
parent | 2cfe205de4242398e69c9e7c613af0d2a7094686 (diff) |
src/ao_cmd: Shave off bytes from doc strings
Switch to using { func, "X args\0Desc" } to specify command, saving
a char field by looking at help[0] instead, and reduce help length by
doing alignment with printf instead of hardcoded spaces.
Diffstat (limited to 'src/ao_packet_master.c')
-rw-r--r-- | src/ao_packet_master.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ao_packet_master.c b/src/ao_packet_master.c index 5f79885c..5c4ab0dd 100644 --- a/src/ao_packet_master.c +++ b/src/ao_packet_master.c @@ -133,8 +133,8 @@ ao_packet_forward(void) __reentrant __code struct ao_cmds ao_packet_master_cmds[] = { - { 'p', ao_packet_forward, "p Remote packet link." }, - { 0, ao_packet_forward, NULL }, + { ao_packet_forward, "p\0Remote packet link." }, + { 0, NULL }, }; void |