summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-07 22:37:32 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-07 22:39:52 -0700
commit7180c708e9cd8de3ebb5e281fe2709a027624cee (patch)
tree4998c08cf77ccced7a3d37070e999215e8c413c5 /dive.h
parent00eba99039d714d39e47363698687843b7731c19 (diff)
downloadsubsurface-7180c708e9cd8de3ebb5e281fe2709a027624cee.tar.gz
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>
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index 98cae9c38..d466643d2 100644
--- a/dive.h
+++ b/dive.h
@@ -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;