diff options
author | Martin Měřinský <mermar@centrum.cz> | 2017-02-20 10:39:54 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-11 08:09:07 -0800 |
commit | 9b93397ec25155f644bb2757e8e537ac24b661c5 (patch) | |
tree | c9102f9551086743ffab5330fc4c364450c2153e /core/profile.c | |
parent | fa7d3b6ecb9a91931afd47f0cc34c8a91b450b1d (diff) | |
download | subsurface-9b93397ec25155f644bb2757e8e537ac24b661c5.tar.gz |
SAC: %.*f%s/min versus SAC:%.*f %s
Diffstat (limited to 'core/profile.c')
-rw-r--r-- | core/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/profile.c b/core/profile.c index 502952bc7..e1e94e89e 100644 --- a/core/profile.c +++ b/core/profile.c @@ -1573,7 +1573,7 @@ void compare_samples(struct plot_data *e1, struct plot_data *e2, char *buf, int int sac = volume_used / atm * 60 / delta_time; memcpy(buf2, buf, bufsize); volume_value = get_volume_units(sac, &volume_precision, &volume_unit); - snprintf(buf, bufsize, translate("gettextFromC", "%s SAC:%.*f %s"), buf2, volume_precision, volume_value, volume_unit); + snprintf(buf, bufsize, translate("gettextFromC", "%s SAC: %.*f%s"), buf2, volume_precision, volume_value, volume_unit); } } |