[Webkit-unassigned] [Bug 128343] New: Fix build error on 64bit debug build

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 6 16:24:46 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=128343

           Summary: Fix build error on 64bit debug build
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: sh53.lee at samsung.com


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>.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list