aboutsummaryrefslogtreecommitdiff
path: root/src/helperfuncs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r--src/helperfuncs.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}