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

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 26 16:24:12 PST 2013


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

           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: gyuyoung.kim at samsung.com


r161076 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