Removed unused var in a macro
Andy Lester [Sat, 15 Apr 2006 23:32:53 +0000 (18:32 -0500)]
Message-ID: <20060416043253.GA3438@petdance.com>

p4raw-id: //depot/perl@27834

thread.h

index aa3c86a..7ff71fa 100644 (file)
--- a/thread.h
+++ b/thread.h
 #ifndef ALLOC_THREAD_KEY
 #  define ALLOC_THREAD_KEY \
     STMT_START {                                               \
-       int _eC_;                                               \
-       if ((_eC_ = pthread_key_create(&PL_thr_key, 0))) {      \
+       if (pthread_key_create(&PL_thr_key, 0)) {               \
             write(2, STR_WITH_LEN("panic: pthread_key_create failed\n")); \
            exit(1);                                            \
        }                                                       \