Title: [118031] trunk/Source/WTF
Revision
118031
Author
[email protected]
Date
2012-05-22 13:03:33 -0700 (Tue, 22 May 2012)

Log Message

Build fix.

* wtf/RAMSize.cpp:
(WTF::computeRAMSize):
If you say you are going to return a size_t, actually return a size_t.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (118030 => 118031)


--- trunk/Source/WTF/ChangeLog	2012-05-22 20:02:25 UTC (rev 118030)
+++ trunk/Source/WTF/ChangeLog	2012-05-22 20:03:33 UTC (rev 118031)
@@ -1,3 +1,11 @@
+2012-05-22  Jessie Berlin  <[email protected]>
+
+        Build fix.
+
+        * wtf/RAMSize.cpp:
+        (WTF::computeRAMSize):
+        If you say you are going to return a size_t, actually return a size_t.
+
 2012-05-21  Geoffrey Garen  <[email protected]>
 
         GC allocation trigger should be tuned to system RAM

Modified: trunk/Source/WTF/wtf/RAMSize.cpp (118030 => 118031)


--- trunk/Source/WTF/wtf/RAMSize.cpp	2012-05-22 20:02:25 UTC (rev 118030)
+++ trunk/Source/WTF/wtf/RAMSize.cpp	2012-05-22 20:03:33 UTC (rev 118031)
@@ -45,7 +45,7 @@
 {
 #if OS(DARWIN)
     int mib[2];
-    int64_t ramSize;
+    size_t ramSize;
     size_t length;
 
     mib[0] = CTL_HW;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to