diff options
author | Keith Packard <keithp@keithp.com> | 2018-08-15 19:17:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-13 08:22:50 -0700 |
commit | 684741765117611b7d666efbdfafd87c6199752c (patch) | |
tree | 6ae2bc7cb368882c9767a9c01d0a0389adc2f988 /src/kernel/ao_sample.c | |
parent | c417ab1de2a083b5fcff2e081e4feb2a65887903 (diff) |
altos: Use stdbool true/false instead of TRUE/FALSE
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel/ao_sample.c')
-rw-r--r-- | src/kernel/ao_sample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/ao_sample.c b/src/kernel/ao_sample.c index 115eae80..9cba36c1 100644 --- a/src/kernel/ao_sample.c +++ b/src/kernel/ao_sample.c @@ -277,7 +277,7 @@ ao_sample_preflight(void) ao_accel_scale = to_fix_32(GRAVITY * 2 * 16) / ao_accel_2g; #endif ao_sample_preflight_set(); - ao_preflight = FALSE; + ao_preflight = false; } } @@ -398,5 +398,5 @@ ao_sample_init(void) ao_sample_set_all_orients(); #endif ao_sample_data = ao_data_head; - ao_preflight = TRUE; + ao_preflight = true; } |