diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-09-23 17:38:37 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-23 09:11:40 -0700 |
commit | 34147426de8b6f5f281623b84e6802a097890468 (patch) | |
tree | 2615a6baa83952ae4a9f21894e608b5bdf735a04 /deco.c | |
parent | f622516dd07a0afbad698f68305561789d4a40c4 (diff) | |
download | subsurface-34147426de8b6f5f281623b84e6802a097890468.tar.gz |
deco.c: fix warnings about unused variables
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'deco.c')
-rw-r--r-- | deco.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -369,7 +369,6 @@ double calc_surface_phase(double surface_pressure, double he_pressure, double n2 void vpmb_start_gradient() { int ci; - double gradient_n2, gradient_he; for (ci = 0; ci < 16; ++ci) { initial_n2_gradient[ci] = bottom_n2_gradient[ci] = 2.0 * (vpmb_config.surface_tension_gamma / vpmb_config.skin_compression_gammaC) * ((vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma) / n2_regen_radius[ci]); @@ -380,7 +379,6 @@ void vpmb_start_gradient() void vpmb_next_gradient(double deco_time, double surface_pressure) { int ci; - double gradient_n2, gradient_he; double n2_b, n2_c; double he_b, he_c; double desat_time; |