summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2015-08-23 15:58:50 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-08-23 07:28:06 -0700
commit7bfc8bc1fe6e37f7d1f6a1e3fbd4390cf640e8eb (patch)
tree1c932b5ed4c8140edab07f4ff8cebb33ba4d0df6 /profile.c
parent8909dbbfd38c3bbc89e96ae6b904111946864f51 (diff)
downloadsubsurface-7bfc8bc1fe6e37f7d1f6a1e3fbd4390cf640e8eb.tar.gz
Show tissue ceilings in tenth of m/ft
Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 67168547b..0722151a3 100644
--- a/profile.c
+++ b/profile.c
@@ -1209,7 +1209,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me
for (k = 0; k < 16; k++) {
if (entry->ceilings[k]) {
depthvalue = get_depth_units(entry->ceilings[k], NULL, &depth_unit);
- put_format(b, translate("gettextFromC", "Tissue %.0fmin: %.0f%s\n"), buehlmann_N2_t_halflife[k], depthvalue, depth_unit);
+ put_format(b, translate("gettextFromC", "Tissue %.0fmin: %.1f%s\n"), buehlmann_N2_t_halflife[k], depthvalue, depth_unit);
}
}
}