summaryrefslogtreecommitdiff
path: root/src/kernel/ao_log.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-08-15 19:13:45 -0700
committerKeith Packard <keithp@keithp.com>2018-10-13 08:22:50 -0700
commitc417ab1de2a083b5fcff2e081e4feb2a65887903 (patch)
tree614c7564321ea38402883992daeaea8f30bfe6b1 /src/kernel/ao_log.c
parentc6e57291d91f1f6c4de5c54a5cfd3eef66d9f830 (diff)
altos: Make cmd number parsing functions return value
Don't use a global variable to hold the result. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel/ao_log.c')
-rw-r--r--src/kernel/ao_log.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/ao_log.c b/src/kernel/ao_log.c
index 1119cce4..fac211cf 100644
--- a/src/kernel/ao_log.c
+++ b/src/kernel/ao_log.c
@@ -437,10 +437,9 @@ ao_log_delete(void)
cmd_flight = -1;
ao_cmd_lex();
}
- ao_cmd_decimal();
+ cmd_flight *= ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success)
return;
- cmd_flight *= (int16_t) ao_cmd_lex_i;
slots = ao_log_slots();
/* Look for the flight log matching the requested flight */