commit | 64182fe0b39870d30b08da54696c4d02e7b52bc5 | [log] [tgz] |
---|---|---|
author | Anthony Baxter <anthonybaxter@gmail.com> | Tue Apr 11 12:14:09 2006 +0000 |
committer | Anthony Baxter <anthonybaxter@gmail.com> | Tue Apr 11 12:14:09 2006 +0000 |
tree | dc4d5d2672d7fe70e9f0ed8411ca23be9df849b6 | |
parent | 7b782b61c597a989a21a22c15ee95decf997429f [diff] [blame] |
Some more changes to make code compile under a C++ compiler.
diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 83e792d..db4cad1 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c
@@ -101,7 +101,7 @@ char *copy, *c; /* We need to convert the '.' to the locale specific decimal point */ - copy = malloc(end - nptr + 1 + decimal_point_len); + copy = (char *)malloc(end - nptr + 1 + decimal_point_len); c = copy; memcpy(c, nptr, decimal_point_pos - nptr);