This is the mail archive of the ecos-bugs@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug 1001654] New: diag_printf truncates the values in %llu and %llxformats


Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001654

           Summary: diag_printf truncates the values in %llu and %llx
                    formats
           Product: eCos
           Version: CVS
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: normal
         Component: Kernel
        AssignedTo: unassigned@bugs.ecos.sourceware.org
        ReportedBy: bernd.edlinger@hotmail.de
                CC: ecos-bugs@ecos.sourceware.org
             Class: Advice Request


Created an attachment (id=1898)
 --> (http://bugs.ecos.sourceware.org/attachment.cgi?id=1898)
proposed fix for this defect.

Hello,

these formats truncate the given 64 bit value to 32 bit.

example:

diag_printf("%llx %llu\n", -1LL, -1LL) => ffffffff 4294967295

the correct output would be (with the attached patch):

diag_printf("%llx %llu\n", -1LL, -1LL) => ffffffffffffffff 18446744073709551615

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]