Title: [191800] trunk/Source/WebCore
Revision
191800
Author
[email protected]
Date
2015-10-30 11:21:28 -0700 (Fri, 30 Oct 2015)

Log Message

[EFL] Fix the debug build after r191758
https://bugs.webkit.org/show_bug.cgi?id=150719

Reviewed by Alex Christensen.

* Modules/indexeddb/server/MemoryIDBBackingStore.cpp:
(WebCore::IDBServer::MemoryIDBBackingStore::createObjectStore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (191799 => 191800)


--- trunk/Source/WebCore/ChangeLog	2015-10-30 18:07:24 UTC (rev 191799)
+++ trunk/Source/WebCore/ChangeLog	2015-10-30 18:21:28 UTC (rev 191800)
@@ -1,3 +1,13 @@
+2015-10-30  Csaba Osztrogonác  <[email protected]>
+
+        [EFL] Fix the debug build after r191758
+        https://bugs.webkit.org/show_bug.cgi?id=150719
+
+        Reviewed by Alex Christensen.
+
+        * Modules/indexeddb/server/MemoryIDBBackingStore.cpp:
+        (WebCore::IDBServer::MemoryIDBBackingStore::createObjectStore):
+
 2015-10-30  Dan Bernstein  <[email protected]>
 
         Fixed the build.

Modified: trunk/Source/WebCore/Modules/indexeddb/server/MemoryIDBBackingStore.cpp (191799 => 191800)


--- trunk/Source/WebCore/Modules/indexeddb/server/MemoryIDBBackingStore.cpp	2015-10-30 18:07:24 UTC (rev 191799)
+++ trunk/Source/WebCore/Modules/indexeddb/server/MemoryIDBBackingStore.cpp	2015-10-30 18:21:28 UTC (rev 191800)
@@ -117,7 +117,7 @@
 
 IDBError MemoryIDBBackingStore::createObjectStore(const IDBResourceIdentifier& transactionIdentifier, const IDBObjectStoreInfo& info)
 {
-    LOG(IndexedDB, "MemoryIDBBackingStore::createObjectStore - adding OS %s with ID %llu", info.name().utf8().data(), info.identifier());
+    LOG(IndexedDB, "MemoryIDBBackingStore::createObjectStore - adding OS %s with ID %" PRIu64, info.name().utf8().data(), info.identifier());
 
     ASSERT(m_databaseInfo);
     if (m_databaseInfo->hasObjectStore(info.name()))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to