Title: [141940] trunk/Source/WTF
Revision
141940
Author
[email protected]
Date
2013-02-05 15:24:39 -0800 (Tue, 05 Feb 2013)

Log Message

Unreviewed build fix.

* wtf/FastMalloc.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (141939 => 141940)


--- trunk/Source/WTF/ChangeLog	2013-02-05 23:05:50 UTC (rev 141939)
+++ trunk/Source/WTF/ChangeLog	2013-02-05 23:24:39 UTC (rev 141940)
@@ -1,3 +1,9 @@
+2013-02-05  Roger Fong  <[email protected]>
+
+        Unreviewed build fix.
+
+        * wtf/FastMalloc.cpp:
+
 2013-02-05  Benjamin Poulain  <[email protected]>
 
         Tidy up StackBounds

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (141939 => 141940)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2013-02-05 23:05:50 UTC (rev 141939)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2013-02-05 23:24:39 UTC (rev 141940)
@@ -802,7 +802,7 @@
   size_t sc = 1;   // Next size class to assign
   unsigned char alignshift = kAlignShift;
   int last_lg = -1;
-  for (size_t size = kAlignment; size <= kMaxSize; size += (1i64 << alignshift)) {
+  for (size_t size = kAlignment; size <= kMaxSize; size += (1 << alignshift)) {
     int lg = LgFloor(size);
     if (lg > last_lg) {
       // Increase alignment every so often.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to