diff options
author | Alexandre Belloni <alexandre.belloni@piout.net> | 2013-11-30 08:23:40 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-30 07:15:54 -0800 |
commit | b244226fa8d7a5bf6b5cc21734f428545e7dfc56 (patch) | |
tree | 3c5823c699f2e12c7d4db1c0369e7d05fd99ffa8 /profile.c | |
parent | 648f02c669f5d69910f65518904a8967760a2003 (diff) | |
download | subsurface-b244226fa8d7a5bf6b5cc21734f428545e7dfc56.tar.gz |
compare_samples: Remove unnecessary space before units
Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1414,7 +1414,7 @@ void compare_samples(struct plot_data *e1, struct plot_data *e2, char *buf, int memcpy(buf2, buf, bufsize); depthvalue = get_depth_units(max_depth, NULL, &depth_unit); - snprintf(buf, bufsize, translate("gettextFromC","%s %sD:%.1f %s"), buf2, UTF8_UPWARDS_ARROW, depthvalue, depth_unit); + snprintf(buf, bufsize, translate("gettextFromC","%s %sD:%.1f%s"), buf2, UTF8_UPWARDS_ARROW, depthvalue, depth_unit); memcpy(buf2, buf, bufsize); depthvalue = get_depth_units(avg_depth, NULL, &depth_unit); |