aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils/parsing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/parsing.cpp b/src/utils/parsing.cpp
index 1e90f2f6e..486f5fdef 100644
--- a/src/utils/parsing.cpp
+++ b/src/utils/parsing.cpp
@@ -14,7 +14,7 @@ namespace Botan {
u32bit to_u32bit(const std::string& str)
{
- return std::stoul(str);
+ return std::stoul(str, nullptr);
}
/*