summaryrefslogtreecommitdiff
path: root/Python/strtod.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-02-07 08:04:07 +0000
committerBrett Cannon <bcannon@gmail.com>2008-02-07 08:04:07 +0000
commit687af0d8fbb7f90521d8ec65e5133638f5313bab (patch)
tree43f10e68c62b7796cad723721a33b08aaf09ee41 /Python/strtod.c
parenta6c41bc9e550fd8608e191bdcdfb419a8b1fd2c0 (diff)
downloadcpython-git-687af0d8fbb7f90521d8ec65e5133638f5313bab.tar.gz
Remove unnecessary curly braces around an int literal.
Diffstat (limited to 'Python/strtod.c')
-rw-r--r--Python/strtod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/strtod.c b/Python/strtod.c
index 5c084a4de0..a248460bce 100644
--- a/Python/strtod.c
+++ b/Python/strtod.c
@@ -44,11 +44,11 @@
I do know about <values.h>, but the whole point of this file is that
we can't always trust that stuff to be there or to be correct.
*/
-static int MDMINEXPT = {-323};
+static int MDMINEXPT = -323;
static char MDMINFRAC[] = "494065645841246544";
static double ZERO = 0.0;
-static int MDMAXEXPT = { 309};
+static int MDMAXEXPT = 309;
static char MDMAXFRAC[] = "17976931348623157";
static double HUGE = 1.7976931348623157e308;