Fix compile warning on 64-bit Linux (no whatsnew)

This commit is contained in:
R. Belmont 2010-06-25 14:07:59 +00:00
parent 29b6b0de41
commit c6feb5b29b

View File

@ -633,7 +633,7 @@ bool debug_view_expression::recompute()
UINT64 oldresult = m_result;
// recompute the value of the expression
EXPRERR exprerr = expression_execute(m_parsed, &m_result);
expression_execute(m_parsed, &m_result);
if (m_result != oldresult)
changed = true;
}