summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-07-06 15:45:04 -0700
committerKeith Packard <keithp@keithp.com>2011-07-06 15:48:34 -0700
commit2ec986f08ce8d4635f4435bb0042b405d93edc40 (patch)
tree01b48c169ebf444219638e6d3132ff66afd1fe72 /src
parent355db71f4511adff8abcb2caded61c12fe8b7ee9 (diff)
altos: Switch const for __code in struct ao_cmds
This saves quite a bit of code space when accessing these values. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r--src/ao.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao.h b/src/ao.h
index dade99bf..bb384611 100644
--- a/src/ao.h
+++ b/src/ao.h
@@ -395,7 +395,7 @@ ao_match_word(__code char *word);
struct ao_cmds {
void (*func)(void);
- const char *help;
+ __code char *help;
};
void