Bug 128343
| Summary: | Fix build error on 64bit debug build | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Sanghyup Lee <sh53.lee> |
| Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED INVALID | ||
| Severity: | Normal | ||
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Sanghyup Lee
r163538 used ‘%lli’(for long long int) for int64_t(aka long int). However, in a 64bit compile, int64_t is 'long int', not a 'long long int'. To support both 32bit and 64bit, we use static_cast<long long>.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |