diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-17 23:05:19 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-17 23:05:19 +0300 |
commit | ae48164c19d799b10981ee6d48207f971be026cd (patch) | |
tree | 9d648169bfd47390b1ad883bc4b54590daaccdb1 /Python/pystrtod.c | |
parent | a51097fdd9d0177b4d856ac1eaa59bc32fb49cc5 (diff) | |
parent | 68fc44960e7e678d7dd31f7676df51045d6a38f9 (diff) | |
download | cpython-ae48164c19d799b10981ee6d48207f971be026cd.tar.gz |
Issue #19276: Fixed the wave module on 64-bit big-endian platforms.
Diffstat (limited to 'Python/pystrtod.c')
-rw-r--r-- | Python/pystrtod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 4ab8f08d22..b8dd919a26 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -164,7 +164,7 @@ static double _PyOS_ascii_strtod(const char *nptr, char **endptr) { char *fail_pos; - double val = -1.0; + double val; struct lconv *locale_data; const char *decimal_point; size_t decimal_point_len; @@ -923,7 +923,7 @@ static char *uc_float_strings[] = { static char * format_float_short(double d, char format_code, - int mode, Py_ssize_t precision, + int mode, int precision, int always_add_sign, int add_dot_0_if_integer, int use_alt_formatting, char **float_strings, int *type) { @@ -1059,7 +1059,7 @@ format_float_short(double d, char format_code, /* if using an exponent, reset decimal point position to 1 and adjust exponent accordingly.*/ if (use_exp) { - exp = decpt - 1; + exp = (int)decpt - 1; decpt = 1; } /* ensure vdigits_start < decpt <= vdigits_end, or vdigits_start < |