diff options
author | Keith Packard <keithp@keithp.com> | 2017-11-11 20:52:01 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-11-11 20:52:01 -0800 |
commit | 23cf8fb4d5745ad76d9517c9702d03d10c58144a (patch) | |
tree | 6d138e533f75466ebd8ee526cc40af5f65344d83 /src/kernel | |
parent | f3b279141cd30ad6a212ce75f5a7c2b8e3d33870 (diff) |
altos: Fix new GCC warnings
* Duplicate 'const' in test code.
* Mis-formatted loop in kf_rem_pio2
* Unused 'one' in sf_cos
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/ao_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao_host.h b/src/kernel/ao_host.h index a7fa5ec2..50583f52 100644 --- a/src/kernel/ao_host.h +++ b/src/kernel/ao_host.h @@ -111,7 +111,7 @@ ao_dump_state(void *wchan); void ao_sleep(void *wchan); -const char const * const ao_state_names[] = { +const char * const ao_state_names[] = { "startup", "idle", "pad", "boost", "fast", "coast", "drogue", "main", "landed", "invalid" }; |