]> granicus.if.org Git - python/commitdiff
Merged revisions 81936 via svnmerge from
authorGeorg Brandl <georg@python.org>
Sun, 17 Oct 2010 11:48:07 +0000 (11:48 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 17 Oct 2010 11:48:07 +0000 (11:48 +0000)
svn+ssh://svn.python.org/python/branches/py3k

........
  r81936 | mark.dickinson | 2010-06-12 11:10:14 +0200 (Sa, 12 Jun 2010) | 2 lines

  Silence 'unused variable' gcc warning.  Patch by Éric Araujo.
........

Objects/unicodeobject.c

index b50293c89c6ad05a11f33ecaef203305b7fa6f1a..f875e1090099b47c1028a884c2cf61edd5a9a0cf 100644 (file)
@@ -2616,10 +2616,11 @@ PyUnicode_DecodeUTF32Stateful(const char *s,
     Py_UNICODE *p;
 #ifndef Py_UNICODE_WIDE
     int pairs = 0;
+    const unsigned char *qq;
 #else
     const int pairs = 0;
 #endif
-    const unsigned char *q, *e, *qq;
+    const unsigned char *q, *e;
     int bo = 0;       /* assume native ordering by default */
     const char *errmsg = "";
     /* Offsets from q for retrieving bytes in the right order. */