From: Steve Hay Date: Wed, 21 Feb 2007 13:36:14 +0000 (+0000) Subject: Remove unreferenced local variable X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=12701bb8c47929758b7e06c7c84478ffa9064610;p=p5sagit%2Fp5-mst-13.2.git Remove unreferenced local variable p4raw-id: //depot/perl@30375 --- diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm index e0c000d..4f42a08 100755 --- a/ext/threads/threads.pm +++ b/ext/threads/threads.pm @@ -5,7 +5,7 @@ use 5.008; use strict; use warnings; -our $VERSION = '1.59'; +our $VERSION = '1.59_01'; my $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/ext/threads/threads.xs b/ext/threads/threads.xs index 1662ee8..799be0d 100755 --- a/ext/threads/threads.xs +++ b/ext/threads/threads.xs @@ -1067,9 +1067,7 @@ ithread_join(...) AV *params = NULL; int len; int ii; -#ifdef WIN32 - DWORD waitcode; -#else +#ifndef WIN32 int rc_join; void *retval; #endif