Title: [90951] trunk/Tools
Revision
90951
Author
[email protected]
Date
2011-07-13 14:45:49 -0700 (Wed, 13 Jul 2011)

Log Message

Unreviewed fix. Add a "\n" to a printf that somehow got lost.

2011-07-13  Joseph Pecoraro  <[email protected]>

        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
        (WebCore::DumpRenderTree::dumpApplicationCacheQuota):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90950 => 90951)


--- trunk/Tools/ChangeLog	2011-07-13 21:44:42 UTC (rev 90950)
+++ trunk/Tools/ChangeLog	2011-07-13 21:45:49 UTC (rev 90951)
@@ -1,5 +1,12 @@
 2011-07-13  Joseph Pecoraro  <[email protected]>
 
+        Unreviewed fix. Add a "\n" to a printf that somehow got lost.
+
+        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
+        (WebCore::DumpRenderTree::dumpApplicationCacheQuota):
+
+2011-07-13  Joseph Pecoraro  <[email protected]>
+
         ApplicationCache Quota Output is Flakey
         https://bugs.webkit.org/show_bug.cgi?id=64410
 

Modified: trunk/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp (90950 => 90951)


--- trunk/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp	2011-07-13 21:44:42 UTC (rev 90950)
+++ trunk/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp	2011-07-13 21:45:49 UTC (rev 90951)
@@ -1047,7 +1047,7 @@
         // sufficient to just get a range of 10000 to determine if we were
         // above or below a threshold.
         quint64 truncatedSpaceNeeded = (totalSpaceNeeded / 10000) * 10000;
-        printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:~%llu",
+        printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:~%llu\n",
                origin->scheme().toUtf8().data(),
                origin->host().toUtf8().data(),
                origin->port(),
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to