diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-02-09 05:45:58 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-09 05:45:58 -0800 |
commit | 9e66312d6a4e693dc094c3e17881e495f65f7d89 (patch) | |
tree | 3ea84b63e1b3484cb2cc66157a06cd277d428f94 /dive.c | |
parent | 15112712019817e4e64b5c35b7bb38315125e920 (diff) | |
download | subsurface-9e66312d6a4e693dc094c3e17881e495f65f7d89.tar.gz |
Initialize variables in helper functions
In commit 904aa0be0d0e ("Do more dive fixup for each dive computer") two
new helper functions were introduced that sadly both incremented variables
without initializing them, first.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -427,7 +427,7 @@ static struct event *find_previous_event(struct divecomputer *dc, struct event * static void fixup_surface_pressure(struct dive *dive) { struct divecomputer *dc; - int sum, nr; + int sum = 0, nr = 0; for_each_dc(dive, dc) { if (dc->surface_pressure.mbar) { @@ -442,7 +442,7 @@ static void fixup_surface_pressure(struct dive *dive) static void fixup_water_salinity(struct dive *dive) { struct divecomputer *dc; - int sum, nr; + int sum = 0, nr = 0; for_each_dc(dive, dc) { if (dc->salinity) { |