From 9d002ee62020e6d1080cba315653d0e5267a0dc1 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 23 Apr 2012 19:21:26 -0700 Subject: [PATCH] fix whitespace post 2f8d08c36 --- src/libxml2_loader.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libxml2_loader.cpp b/src/libxml2_loader.cpp index 85ca05e0b..64fdaf511 100644 --- a/src/libxml2_loader.cpp +++ b/src/libxml2_loader.cpp @@ -135,13 +135,13 @@ public: xmlError * error = xmlCtxtGetLastError( ctx_ ); std::ostringstream os; os << "XML document not well formed"; - int line=0; - std::string file; + int line=0; + std::string file; if (error) { os << ": " << std::endl << error->message; - line = error->line; - file = error->file; + line = error->line; + file = error->file; } throw config_error(os.str(), line, file); }