mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Clean up signedness confusion in dive.c
This started out as cleaning up warnings - but it actually turned into a matter of semantics and correctness. Which lead to changes in .h files which will have a ton of ripple effects. A lot more of this to come. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ee6f60515c
commit
f2c40907c5
3 changed files with 17 additions and 14 deletions
|
|
@ -99,7 +99,7 @@ typedef struct
|
|||
|
||||
typedef struct
|
||||
{
|
||||
int32_t mkelvin; // up to 1750 degrees K
|
||||
uint32_t mkelvin; // up to 1750 degrees K (temperatures in K are always positive)
|
||||
} temperature_t;
|
||||
|
||||
typedef struct
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue