RESOLVED INVALID128343
Fix build error on 64bit debug build
https://bugs.webkit.org/show_bug.cgi?id=128343
Summary Fix build error on 64bit debug build
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.