Bug 128343

Summary: Fix build error on 64bit debug build
Product: WebKit Reporter: Sanghyup Lee <sh53.lee>
Component: New BugsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED INVALID    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Sanghyup Lee
Reported 2014-02-06 16:22:05 PST
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
Note You need to log in before you can comment on or make changes to this bug.