Bug 165945
Summary: | [EFL] Fix debug build break since r209873 | ||
---|---|---|---|
Product: | WebKit | Reporter: | Joonghun Park <jh718.park> |
Component: | WebKit EFL | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | lucas.de.marchi |
Priority: | P2 | ||
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Joonghun Park
Fix a build warning error below. Use Primitive System Data Type uint64_t instead of unsigned long long.
In file included from ../../Source/WTF/wtf/StdLibExtras.h:33:0,
from ../../Source/WTF/wtf/FastMalloc.h:26,
from ../../Source/WebCore/config.h:75,
from ../../Source/WebCore/Modules/indexeddb/IDBFactory.cpp:26:
../../Source/WebCore/Modules/indexeddb/IDBFactory.cpp: In member function ‘WebCore::ExceptionOr<WTF::Ref<WebCore::IDBOpenDBRequest> > WebCore::IDBFactory::openInternal(WebCore::ScriptExecutionContext&, const WTF::String&, long long unsigned int)’:
../../Source/WTF/wtf/Assertions.h:399:68: error: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘long long unsigned int’ [-Werror=format=]
#define LOG(channel, ...) WTFLog(&LOG_CHANNEL(channel), __VA_ARGS__)
^
../../Source/WebCore/Modules/indexeddb/IDBFactory.cpp:103:5: note: in expansion of macro ‘LOG’
LOG(IndexedDBOperations, "IDB opening database: %s %" PRIu64, name.utf8().data(), version);
^
cc1plus: all warnings being treated as errors
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Joonghun Park
Committed r209912: <http://trac.webkit.org/changeset/209912>