diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-05-27 07:21:37 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-05-27 07:21:37 -0700 |
commit | c6bc88b50d3d4c2bc4d0949ada7300aad9641c6e (patch) | |
tree | 2fe20ebe9917445fe6e4601993721ce2658433fe /core/profile.c | |
parent | 3d8c0b27719ec6fd180c85608b241a53c123ca4c (diff) | |
download | subsurface-c6bc88b50d3d4c2bc4d0949ada7300aad9641c6e.tar.gz |
Fix some warnings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/profile.c')
-rw-r--r-- | core/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/profile.c b/core/profile.c index 36e365d48..26098b210 100644 --- a/core/profile.c +++ b/core/profile.c @@ -1293,7 +1293,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me { int pressurevalue, mod, ead, end, eadd; const char *depth_unit, *pressure_unit, *temp_unit, *vertical_speed_unit; - double depthvalue, tempvalue, speedvalue, sacvalue, density; + double depthvalue, tempvalue, speedvalue, sacvalue; int decimals; const char *unit; |