summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/errors.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index b011acc..68743bf 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -218,7 +218,6 @@ PyErr_Format(exception, format, va_alist)
{
va_list vargs;
char buffer[500]; /* Caller is responsible for limiting the format */
- PyObject *s;
#ifdef HAVE_STDARG_PROTOTYPES
va_start(vargs, format);