diff options
author | Keith Packard <keithp@keithp.com> | 2018-08-13 17:43:57 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-08-15 15:40:15 -0700 |
commit | bb9d071d328969fc3c544897f1fc96e55a842198 (patch) | |
tree | 48533fbf52b0684fa749731d12a76b02581aa039 | |
parent | 171d12cb7bb0ea185e9b8b6d90e1c0fb94b19008 (diff) |
altos: Remove spurious 'const' from ao_state_names
Current gcc complains about this.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/kernel/ao.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao.h b/src/kernel/ao.h index 2bd0e367..0a3981d7 100644 --- a/src/kernel/ao.h +++ b/src/kernel/ao.h @@ -662,7 +662,7 @@ ao_radio_init(void); #if HAS_MONITOR -extern const char const * const ao_state_names[]; +extern const char * const ao_state_names[]; #define AO_MONITOR_RING 8 |