From f4bd1756165420701c136ebabc53192455a73b4b Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 22 Jan 2014 14:52:31 +0100 Subject: [PATCH] fixes #881 --- Descriptors/GPXDescriptor.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Descriptors/GPXDescriptor.h b/Descriptors/GPXDescriptor.h index 82a435200..105a09abf 100644 --- a/Descriptors/GPXDescriptor.h +++ b/Descriptors/GPXDescriptor.h @@ -87,18 +87,18 @@ public: FixedPointCoordinate::convertInternalLatLonToString(current.lon, tmp); reply.content.push_back("lon=\"" + tmp + "\">"); } - // Add the via point or the end coordinate - FixedPointCoordinate::convertInternalLatLonToString( - phantom_node_list.targetPhantom.location.lat, - tmp - ); - reply.content.push_back(""); } + // Add the via point or the end coordinate + FixedPointCoordinate::convertInternalLatLonToString( + phantom_node_list.targetPhantom.location.lat, + tmp + ); + reply.content.push_back(""); } reply.content.push_back(""); }