diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index eaacee665..a43c4d9dd 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -440,7 +440,7 @@ bool Duration::TryFrom(const std::string& str, unsigned long& duration) unsigned long Duration::From(const std::string& str) { unsigned long out = 0; - Duration::TryFrom(str, out, base); + Duration::TryFrom(str, out); return out; }