summaryrefslogtreecommitdiffstats
path: root/core/profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/profile.c')
-rw-r--r--core/profile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/profile.c b/core/profile.c
index 8821b4363..d95ef1a0a 100644
--- a/core/profile.c
+++ b/core/profile.c
@@ -399,7 +399,7 @@ struct plot_info calculate_max_limits_new(struct dive *dive, struct divecomputer
bool seen = false;
static struct plot_info pi;
int maxdepth = dive->maxdepth.mm;
- unsigned int maxtime = 0;
+ int maxtime = 0;
int maxpressure = 0, minpressure = INT_MAX;
int maxhr = 0, minhr = INT_MAX;
int mintemp = dive->mintemp.mkelvin;
@@ -1310,6 +1310,8 @@ void create_plot_info_new(struct dive *dive, struct divecomputer *dc, struct plo
#ifndef SUBSURFACE_MOBILE
struct deco_state plot_deco_state;
init_decompression(&plot_deco_state, dive);
+#else
+ (void)planner_ds;
#endif
/* Create the new plot data */
free((void *)last_pi_entry_new);