From a361360823ed561b24581e28322a40c98e8756b1 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Thu, 8 Jul 2010 09:53:49 +0200 Subject: [PATCH] fix build typo --- src/simulator/high-precision-cairo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulator/high-precision-cairo.cc b/src/simulator/high-precision-cairo.cc index 57b1588fe..2e0e43b9a 100644 --- a/src/simulator/high-precision-cairo.cc +++ b/src/simulator/high-precision-cairo.cc @@ -38,7 +38,7 @@ NS_LOG_COMPONENT_DEFINE ("HighPrecisionCairo"); ub = _cairo_int128_to_uint128 (sb); \ ua = negA ? _cairo_uint128_negate (ua) : ua; \ ub = negB ? _cairo_uint128_negate (ub) : ub; \ - negResult = (negA && !negB) || (!negA && negB);}) + (negA && !negB) || (!negA && negB);}) void HighPrecision::Mul (HighPrecision const &o)