diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-08 13:47:01 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-08 13:47:01 -0800 |
commit | 77f4802ed66a3c2793199805100ece51056cbabf (patch) | |
tree | f5e4a03f326ad99916f8db34caca056db3fe3a84 /deco.c | |
parent | 8eb92c576c040b5366d3ac2511ccf579882be9a7 (diff) | |
download | subsurface-77f4802ed66a3c2793199805100ece51056cbabf.tar.gz |
Minor cleanups
Coding style in deco.c.
Unneccessary if clause in profile.c (the loop starts with i = 1)
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'deco.c')
-rw-r--r-- | deco.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ double add_segment(double pressure, struct gasmix *gasmix, int period_in_seconds double ppn2 = (pressure - WV_PRESSURE) * (1000 - fo2 - gasmix->he.permille) / 1000.0; double pphe = (pressure - WV_PRESSURE) * gasmix->he.permille / 1000.0; - if(pressure > gf_low_pressure_this_dive) + if (pressure > gf_low_pressure_this_dive) gf_low_pressure_this_dive = pressure; if (ccpo2 > 0.0) { /* CC */ |