tools/source/generic/fract.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 38d7278e38b8c6d6e332814b5c626ab182d41d31
Author: Noel Power <noel.po...@suse.com>
Date:   Tue Apr 30 14:07:51 2013 +0100

    fix for fdo#64078
    
    Change-Id: Ib8c70b0074485ccd8bf6095c070610fe90e22d4a

diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx
index 4f5ee96..c99db66 100644
--- a/tools/source/generic/fract.cxx
+++ b/tools/source/generic/fract.cxx
@@ -132,7 +132,7 @@ Fraction::Fraction( double dVal )
         return;
     }
 
-    while ( abs( (long)dVal ) < nMAX && nDen < nMAX )
+    while ( labs( (long)dVal ) < nMAX && nDen < nMAX )
     {
         dVal *= 10;
         nDen *= 10;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to