Skip to content

Commit

Permalink
Merge branch 'branch-6-4' into branch-7-0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Feb 24, 2016
2 parents 2e8c128 + ed7d3f6 commit 7f19b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ static void writeNumber(FILE *stream, int indent, const char *name, double defau
{
if(number == defaultNumber) return; /* don't output default */
writeIndent(stream, ++indent);
msIO_fprintf(stream, "%s %g\n", name, number);
msIO_fprintf(stream, "%s %.15g\n", name, number);
}

static void writeCharacter(FILE *stream, int indent, const char *name, const char defaultCharacter, char character)
Expand Down

0 comments on commit 7f19b9e

Please sign in to comment.