From e07f522c7f570321ef2c069f5fe8b51a5ddb5a7f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 20 Apr 2011 12:23:26 +0200 Subject: [PATCH] Issue #11223: fix compiler warnings --- Python/thread.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python/thread.c b/Python/thread.c index 5213a725aed..1f15a22e2fc 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -420,8 +420,11 @@ _PyThread_Info(void) { PyObject *info, *value; int ret; +#if (defined(_POSIX_THREADS) && defined(HAVE_CONFSTR) \ + && defined(_CS_GNU_LIBPTHREAD_VERSION)) char buffer[255]; int len; +#endif info = PyDict_New(); if (info == NULL)