diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-10-16 19:55:47 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-10-16 19:55:47 +0200 |
commit | 8687e31b54767faf498f6c08a132d714e327cd05 (patch) | |
tree | 59bc4259c223ba58b4f7af63050cd1523360fe90 /desktop | |
parent | 35d9cd4969ba39d7ac8975d4102b4de5a9ae2562 (diff) |
typo
Change-Id: I88c404d8e46ba87017af2167fd31dc9dd8758082
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
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); |