summaryrefslogtreecommitdiff
path: root/ao-tools/lib/cc-process.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2019-01-03 11:41:49 -0800
committerKeith Packard <keithp@keithp.com>2019-01-03 12:09:58 -0800
commit6f729ff46b2f4531db68f0af85e7e9fe0f6d1969 (patch)
treed0a93a48bd3012decbb230f5aa17ecc6c793cad2 /ao-tools/lib/cc-process.c
parentf14c799ae7ff3be56c28f5694f04c03daff7708e (diff)
ao-tools: Fix warnings in ao-tools
None of these appear likely to have caused actual problems. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/lib/cc-process.c')
-rw-r--r--ao-tools/lib/cc-process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/lib/cc-process.c b/ao-tools/lib/cc-process.c
index 74b02a74..f2307a82 100644
--- a/ao-tools/lib/cc-process.c
+++ b/ao-tools/lib/cc-process.c
@@ -46,8 +46,8 @@ struct cc_flightcooked *
cc_flight_cook(struct cc_flightraw *raw)
{
struct cc_flightcooked *cooked;
- double flight_start;
- double flight_stop;
+ double flight_start = 0;
+ double flight_stop = 0;
int start_set = 0;
int stop_set = 0;
int i;