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:
Dirk Hohndel 2013-10-07 22:37:32 -07:00
parent 00eba99039
commit 7180c708e9
3 changed files with 15 additions and 15 deletions

2
dive.h
View file

@ -692,7 +692,7 @@ extern double restore_deco_state(char *data);
struct divedatapoint {
int time;
int depth;
unsigned int depth;
int o2;
int he;
int po2;