Skip to content

v0.2.49..v0.2.50 changeset OgrUtilities.cpp

Garret Voltz edited this page Nov 6, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/OgrUtilities.cpp b/hoot-core/src/main/cpp/hoot/core/io/OgrUtilities.cpp
index 9a98814..527d44a 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/OgrUtilities.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/io/OgrUtilities.cpp
@@ -131,7 +131,7 @@ OgrDriverInfo OgrUtilities::getDriverInfo(const QString& url, bool readonly)
     if (((it->_is_ext && url.endsWith(it->_indicator)) || (!it->_is_ext && url.startsWith(it->_indicator))) &&
         (readonly || it->_is_rw))
     {
-        return *it;
+      return *it;
     }
   }
   return OgrDriverInfo();
Clone this wiki locally