all repos — fluxbox @ 940fbca3febe78b788c78d8bb90cdabed78bdf0b

custom fork of the fluxbox windowmanager

removed 'always-true' expression
Paul Tagliamonte paultag@fluxbox.org
commit

940fbca3febe78b788c78d8bb90cdabed78bdf0b

parent

e6a01dcabb2d1598d02ab211d19e7a6776319010

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/FbTk/StringUtil.ccsrc/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<T>(result); return 1; }