diff options
author | Keith Packard <keithp@keithp.com> | 2017-09-12 13:41:11 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-09-12 13:41:11 -0700 |
commit | be44d33f5e94b8c4180adb275ec83cc70852db48 (patch) | |
tree | ac01d5b78f736ea44a9a580a310cf01631b9dd36 | |
parent | 10d14146ef84fbe4670454bc0996854a4066cfea (diff) |
altos: Fix debug printf in ao_pyro for state >=
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/kernel/ao_pyro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao_pyro.c b/src/kernel/ao_pyro.c index a0881f9e..9543b3ef 100644 --- a/src/kernel/ao_pyro.c +++ b/src/kernel/ao_pyro.c @@ -181,7 +181,7 @@ ao_pyro_ready(struct ao_pyro *pyro) case ao_pyro_state_greater_or_equal: if (ao_flight_state >= pyro->state_greater_or_equal) continue; - DBG("state %d >= %d\n", ao_flight_state, pyro->state_less); + DBG("state %d < %d\n", ao_flight_state, pyro->state_greater_or_equal); break; default: |