summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/source/lib/init.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a7a6ea944a03..f87510b2bed6 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -110,7 +110,7 @@ std::string to_string(T x)
return stream.str();
}
-long stol( const std::string& str, std::size_t* /*pos*/ = 0, int base = 10 );
+long stol( const std::string& str, std::size_t* /*pos*/ = 0, int base = 10 )
{
char* end;
return strtol(str.c_str(), &end, base);