Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so that
the --disable-unicode build doesn't complain about an
unused variable.
diff --git a/Python/getargs.c b/Python/getargs.c
index cc0409d..58ef2a3 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -400,7 +400,9 @@
 {
 	char *format = *p_format;
 	char c = *format++;
+#ifdef Py_USING_UNICODE
 	PyObject *uarg;
+#endif
 	
 	switch (c) {