diff --git a/src/apps/debugger/value/values/FloatValue.cpp b/src/apps/debugger/value/values/FloatValue.cpp index 52f0cc0b6b..aba19862ea 100644 --- a/src/apps/debugger/value/values/FloatValue.cpp +++ b/src/apps/debugger/value/values/FloatValue.cpp @@ -47,6 +47,6 @@ FloatValue::ToVariant(BVariant& _value) const bool FloatValue::operator==(const Value& other) const { - const FloatValue* otherInt = dynamic_cast(&other); - return otherInt != NULL ? fValue == otherInt->fValue : false; + const FloatValue* otherFloat = dynamic_cast(&other); + return otherFloat != NULL ? fValue == otherFloat->fValue : false; }