Make planner.c warning consistent

Just a tiny change to make them look more consistent.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-02-13 23:14:55 -08:00
parent fd703f3ca0
commit d1ee250524

View file

@ -364,7 +364,7 @@ void add_duration_to_nth_dp(struct diveplan *diveplan, int idx, int duration, gb
} }
dp->time = duration; dp->time = duration;
if (duration > 180 * 60) if (duration > 180 * 60)
show_error(_("Warning, extremely long dives can cause long calculation time")); show_error(_("Warning - extremely long dives can cause long calculation time"));
} }
/* this function is ONLY called from the dialog callback - so it /* this function is ONLY called from the dialog callback - so it