Title: [90889] trunk/Tools
Revision
90889
Author
[email protected]
Date
2011-07-12 23:03:04 -0700 (Tue, 12 Jul 2011)

Log Message

Fix the 32-bit build.

* DumpRenderTree/mac/UIDelegate.mm:
(-[UIDelegate webView:exceededApplicationCacheOriginQuotaForSecurityOrigin:totalSpaceNeeded:]):
Cast the NSUInteger value to unsigned long to match the format specifier.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90888 => 90889)


--- trunk/Tools/ChangeLog	2011-07-13 05:43:08 UTC (rev 90888)
+++ trunk/Tools/ChangeLog	2011-07-13 06:03:04 UTC (rev 90889)
@@ -1,3 +1,11 @@
+2011-07-12  Mark Rowe  <[email protected]>
+
+        Fix the 32-bit build.
+
+        * DumpRenderTree/mac/UIDelegate.mm:
+        (-[UIDelegate webView:exceededApplicationCacheOriginQuotaForSecurityOrigin:totalSpaceNeeded:]):
+        Cast the NSUInteger value to unsigned long to match the format specifier.
+
 2011-07-12  Adam Barth  <[email protected]>
 
         Improve garden-o-matic UI when the bots fail to report revision numbers

Modified: trunk/Tools/DumpRenderTree/mac/UIDelegate.mm (90888 => 90889)


--- trunk/Tools/DumpRenderTree/mac/UIDelegate.mm	2011-07-13 05:43:08 UTC (rev 90888)
+++ trunk/Tools/DumpRenderTree/mac/UIDelegate.mm	2011-07-13 06:03:04 UTC (rev 90889)
@@ -170,7 +170,7 @@
 {
     if (!done && gLayoutTestController->dumpApplicationCacheDelegateCallbacks()) {
         printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:%lu\n",
-            [[origin protocol] UTF8String], [[origin host] UTF8String], [origin port], totalSpaceNeeded);
+            [[origin protocol] UTF8String], [[origin host] UTF8String], [origin port], (unsigned long)totalSpaceNeeded);
     }
 
     if (gLayoutTestController->disallowIncreaseForApplicationCacheQuota())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to