From 8c79c1aa915288e1b5d8dd047bc1fb7769ddca50 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 17 Oct 2018 10:35:28 +0200 Subject: [PATCH] Fix reading of mixed navigation data files --- src/utils/rinex2assist/main.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/utils/rinex2assist/main.cc b/src/utils/rinex2assist/main.cc index f003e5c35..11792d040 100644 --- a/src/utils/rinex2assist/main.cc +++ b/src/utils/rinex2assist/main.cc @@ -209,10 +209,7 @@ int main(int argc, char** argv) if (j != 0) { std::ofstream ofs2; - if (xml_filename.empty()) - { - xml_filename = "eph_Galileo_E1.xml"; - } + xml_filename = "eph_Galileo_E1.xml"; try { ofs2.open(xml_filename.c_str(), std::ofstream::trunc | std::ofstream::out);