diff options
author | Steve Hay <SteveHay@planit.com> | 2007-02-21 13:36:14 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-02-21 13:36:14 +0000 |
commit | 12701bb8c47929758b7e06c7c84478ffa9064610 (patch) | |
tree | 86f39c446706d88c93aceb6f115daa874ad3cc8e | |
parent | def5107868d99ec0d4007de47d727325b581a446 (diff) | |
download | perl-12701bb8c47929758b7e06c7c84478ffa9064610.tar.gz |
Remove unreferenced local variable
p4raw-id: //depot/perl@30375
-rwxr-xr-x | ext/threads/threads.pm | 2 | ||||
-rwxr-xr-x | ext/threads/threads.xs | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm index e0c000d0b2..4f42a08e39 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 1662ee8478..799be0d93c 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 |