mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix some signedness issues
I always worry if these are worth following up on - but these seem pretty clear and obvious to me. As far as the planner is concerned, depth is unsigned. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
00eba99039
commit
7180c708e9
3 changed files with 15 additions and 15 deletions
2
deco.c
2
deco.c
|
@ -23,7 +23,7 @@
|
|||
struct buehlmann_config {
|
||||
double satmult; //! safety at inert gas accumulation as percentage of effect (more than 100).
|
||||
double desatmult; //! safety at inert gas depletion as percentage of effect (less than 100).
|
||||
int last_deco_stop_in_mtr; //! depth of last_deco_stop.
|
||||
unsigned int last_deco_stop_in_mtr; //! depth of last_deco_stop.
|
||||
double gf_high; //! gradient factor high (at surface).
|
||||
double gf_low; //! gradient factor low (at bottom/start of deco calculation).
|
||||
double gf_low_position_min; //! gf_low_position below surface_min_shallow.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue