summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Alexandre Belloni <alexandre.belloni@piout.net>2013-11-30 08:23:40 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-30 07:15:54 -0800
commitb244226fa8d7a5bf6b5cc21734f428545e7dfc56 (patch)
tree3c5823c699f2e12c7d4db1c0369e7d05fd99ffa8 /profile.c
parent648f02c669f5d69910f65518904a8967760a2003 (diff)
downloadsubsurface-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 453da991a..defeb94fd 100644
--- a/profile.c
+++ b/profile.c
@@ -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);