From 7a42215067f60edbfeab179343ba0c10b47d9590 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Sun, 27 Dec 2015 14:33:16 -0800 Subject: [PATCH] dive: paren error in set point handling This probably is a serious bug, found by cppcheck. Original code had paren's in probably the wrong place! Signed-off-by: Stephen Hemminger Signed-off-by: Dirk Hohndel --- subsurface-core/dive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsurface-core/dive.c b/subsurface-core/dive.c index 46129b86a..f0baf076a 100644 --- a/subsurface-core/dive.c +++ b/subsurface-core/dive.c @@ -933,7 +933,7 @@ void update_setpoint_events(struct divecomputer *dc) next = get_next_event(ev, "gaschange"); } fill_pressures(&pressures, calculate_depth_to_mbar(dc->sample[i].depth.mm, dc->surface_pressure, 0), gasmix ,0, OC); - if (abs(dc->sample[i].setpoint.mbar - (int)(1000 * pressures.o2) <= 50)) + if (abs(dc->sample[i].setpoint.mbar - (int)(1000 * pressures.o2)) <= 50) dc->sample[i].setpoint.mbar = 0; } }