]> granicus.if.org Git - python/commitdiff
Silence 'unused variable' gcc warning. Patch by Éric Araujo.
authorMark Dickinson <dickinsm@gmail.com>
Sat, 12 Jun 2010 09:10:14 +0000 (09:10 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 12 Jun 2010 09:10:14 +0000 (09:10 +0000)
Objects/unicodeobject.c

index 8d75b205de73d16e6720b433432f432b8f8f49ae..4153c25f53d657a123b41ccc10dec4e035519b30 100644 (file)
@@ -2737,10 +2737,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. */