Title: [119064] trunk/Source/WebCore
Revision
119064
Author
[email protected]
Date
2012-05-30 23:58:10 -0700 (Wed, 30 May 2012)

Log Message

Build fix for Linon/SnowLeopard after r119062

* platform/Decimal.cpp:
(WebCore::Decimal::Decimal):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119063 => 119064)


--- trunk/Source/WebCore/ChangeLog	2012-05-31 06:46:16 UTC (rev 119063)
+++ trunk/Source/WebCore/ChangeLog	2012-05-31 06:58:10 UTC (rev 119064)
@@ -1,5 +1,12 @@
 2012-05-30  Yoshifumi Inoue  <[email protected]>
 
+        Build fix for Linon/SnowLeopard after r119062
+
+        * platform/Decimal.cpp:
+        (WebCore::Decimal::Decimal):
+
+2012-05-30  Yoshifumi Inoue  <[email protected]>
+
         [Platform] Introduce Decimal class for Number/Range input type.
         https://bugs.webkit.org/show_bug.cgi?id=87360
 

Modified: trunk/Source/WebCore/platform/Decimal.cpp (119063 => 119064)


--- trunk/Source/WebCore/platform/Decimal.cpp	2012-05-31 06:46:16 UTC (rev 119063)
+++ trunk/Source/WebCore/platform/Decimal.cpp	2012-05-31 06:58:10 UTC (rev 119064)
@@ -278,7 +278,7 @@
 }
 
 Decimal::Decimal(int32_t i32)
-    : m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint32_t>(-i32) : i32)
+    : m_data(i32 < 0 ? Negative : Positive, 0, static_cast<uint32_t>(i32 < 0 ? -i32 : i32))
 {
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to