diff --git a/ge0/geo_url_parser.cpp b/ge0/geo_url_parser.cpp index 4dd5d0248b..49772be1a3 100644 --- a/ge0/geo_url_parser.cpp +++ b/ge0/geo_url_parser.cpp @@ -207,7 +207,8 @@ bool GeoParser::Parse(std::string const & raw, GeoURLInfo & info) const { // no match? try URL decoding before giving up coordinates = url::UrlDecode(coordinates); - if (!std::regex_match(coordinates, m, m_latlonRe) || m.size() < 3){ + if (!std::regex_match(coordinates, m, m_latlonRe) || m.size() < 3) + { LOG(LWARNING, ("Missing coordinates in", raw)); return false; }