https://bugs.webkit.org/show_bug.cgi?id=150719
Reviewed by Alex Christensen.
* Modules/indexeddb/server/MemoryIDBBackingStore.cpp:
(WebCore::IDBServer::MemoryIDBBackingStore::createObjectStore):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@191800
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-10-30 Csaba Osztrogonác <ossy@webkit.org>
+
+ [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 <mitz@apple.com>
Fixed the build.
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()))