summaryrefslogtreecommitdiffstats
path: root/save-git.c
diff options
context:
space:
mode:
authorGravatar Gehad <gehadelrobey@gmail.com>2014-04-05 13:01:34 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-04-05 16:10:11 -0700
commitcb3436b42eecdb0a058ed565709804292b80469b (patch)
tree8cf631a40536e4f3026c8ed9a03e34766d328a00 /save-git.c
parent62e4c4069b517e97660452edd70f65d3cdb15e35 (diff)
downloadsubsurface-cb3436b42eecdb0a058ed565709804292b80469b.tar.gz
Use helper function to write decimal numbers
Never ever use '%f' to write floating point data to a file. The stupid locale handling creates useless comma-infested output in some locales. Instead use one of our clever helper functions to do the right thing. Original patch by Gehad, modified by Linus to be a little more generic. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-git.c')
-rw-r--r--save-git.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/save-git.c b/save-git.c
index 9b0d2dbba..634db6606 100644
--- a/save-git.c
+++ b/save-git.c
@@ -38,24 +38,11 @@ static void cond_put_format(int cond, struct membuffer *b, const char *fmt, ...)
#define SAVE(str, x) cond_put_format(dive->x, b, str " %d\n", dive->x)
-static void put_degrees(struct membuffer *b, degrees_t value, const char sep)
-{
- int udeg = value.udeg;
- const char *sign = "";
-
- if (udeg < 0) {
- udeg = -udeg;
- sign = "-";
- }
- put_format(b,"%s%u.%06u%c", sign, FRACTION(udeg, 1000000), sep);
-}
-
static void show_gps(struct membuffer *b, degrees_t latitude, degrees_t longitude)
{
if (latitude.udeg || longitude.udeg) {
- put_string(b, "gps ");
- put_degrees(b, latitude, ' ');
- put_degrees(b, longitude, '\n');
+ put_degrees(b, latitude, "gps ", " ");
+ put_degrees(b, longitude, "", "\n");
}
}