diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-20 22:15:25 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-20 22:19:35 -0800 |
commit | b31b4622d5bd92c0cc0851818f5b595dbdb60ead (patch) | |
tree | 7ce882a3f9a583903d2054471769a82e7c3de852 /src/core/ao_ignite.c | |
parent | 755082d36231c1b247bc0e1f13919dd9b5c362a8 (diff) |
altos: Clean up some minor warnings from -Wall
Unused variables, functions and labels, missing enums in switch.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_ignite.c')
-rw-r--r-- | src/core/ao_ignite.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/ao_ignite.c b/src/core/ao_ignite.c index 9f2ec0a7..823d003c 100644 --- a/src/core/ao_ignite.c +++ b/src/core/ao_ignite.c @@ -114,6 +114,8 @@ ao_igniter_fire(enum ao_igniter igniter) ao_delay(AO_IGNITER_FIRE_TIME); AO_IGNITER_SET_MAIN(0); break; + default: + break; } break; case AO_IGNITE_MODE_MAIN: @@ -127,6 +129,8 @@ ao_igniter_fire(enum ao_igniter igniter) ao_delay(AO_IGNITER_FIRE_TIME); AO_IGNITER_SET_MAIN(0); break; + default: + break; } break; } |