From 23dd8dc923e09066c4de1446e10ac3fd09989d05 Mon Sep 17 00:00:00 2001 From: Andy Lester Date: Sat, 15 Apr 2006 18:32:53 -0500 Subject: [PATCH] Removed unused var in a macro Message-ID: <20060416043253.GA3438@petdance.com> p4raw-id: //depot/perl@27834 --- thread.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/thread.h b/thread.h index aa3c86a2be..7ff71fad2a 100644 --- a/thread.h +++ b/thread.h @@ -338,8 +338,7 @@ #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); \ } \ -- 2.34.1