Skip to content

invalid type used in function: void modp_litoa10(int64_t value, char* str) #35

@GoogleCodeExporter

Description

@GoogleCodeExporter
In file modp_numtoa.c at line
    unsigned long uvalue = (value < 0) ? -value : value;
input is converted to 32 bit integer.

Solution:
    uint64_t uvalue = (value < 0) ? -value : value;



Original issue reported on code.google.com by [email protected] on 20 Jun 2013 at 8:37

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions