diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc index 2cc47fd0..0dcd9894 100644 --- a/src/FbTk/StringUtil.cc +++ b/src/FbTk/StringUtil.cc @@ -100,7 +100,7 @@ int extractUnsignedNumber(const std::string& in, T& out) { unsigned long long int result = 0; - if (::extractBigNumber(in.c_str(), strtoull, result) && result >= 0) { + if (::extractBigNumber(in.c_str(), strtoull, result)) { out = static_cast(result); return 1; }