[Python-checkins] r71604 - python/branches/py3k-short-float-repr/Objects/stringlib/localeutil.h

eric.smith python-checkins at python.org
Tue Apr 14 19:21:15 CEST 2009


Author: eric.smith
Date: Tue Apr 14 19:21:14 2009
New Revision: 71604

Log:
Silence compiler warning.

Modified:
   python/branches/py3k-short-float-repr/Objects/stringlib/localeutil.h

Modified: python/branches/py3k-short-float-repr/Objects/stringlib/localeutil.h
==============================================================================
--- python/branches/py3k-short-float-repr/Objects/stringlib/localeutil.h	(original)
+++ python/branches/py3k-short-float-repr/Objects/stringlib/localeutil.h	Tue Apr 14 19:21:14 2009
@@ -125,7 +125,7 @@
                               separator. They only go between
                               groups. */
     STRINGLIB_CHAR *buffer_end = NULL;
-    STRINGLIB_CHAR *digits_end;
+    STRINGLIB_CHAR *digits_end = NULL;
     Py_ssize_t l;
     Py_ssize_t n_chars;
     Py_ssize_t thousands_sep_len = strlen(thousands_sep);


More information about the Python-checkins mailing list