From 7adc619c880f81bcded31c2af591b76d61f59b00 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Tue, 15 Oct 2019 22:01:43 +0100 Subject: [PATCH] Stylistic changes --- src/source.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/source.cpp b/src/source.cpp index b7d1e2499..464a39948 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -77,9 +77,9 @@ SourceDistribution::SourceDistribution(pugi::xml_node node) settings::path_source_library = get_node_value(node, "library", false, true); // check if it exists if (!file_exists(settings::path_source_library)) { - std::stringstream msg; - msg << "Library file " << settings::path_source_library << "' does not exist."; - fatal_error(msg); + std::stringstream msg; + msg << "Library file " << settings::path_source_library << "' does not exist."; + fatal_error(msg); } } else {