Remove non-existant variable from debug statement

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-07-03 21:02:39 -07:00
parent 6a57ce5c6b
commit 5fb947681e

View file

@ -756,7 +756,7 @@ void plan(struct diveplan *diveplan, char **cached_datap, bool add_deco, bool sh
#if DEBUG_PLAN & 4
printf("gas %s\n", gasname(&gas));
printf("depth %5.2lfm ceiling %5.2lfm\n", depth / 1000.0, ceiling / 1000.0);
printf("depth %5.2lfm \n", depth / 1000.0);
#endif
best_first_ascend_cylinder = current_cylinder;