This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove an unused variable left over from change #26041
authorSteve Hay <SteveHay@planit.com>
Tue, 8 Nov 2005 10:16:56 +0000 (10:16 +0000)
committerSteve Hay <SteveHay@planit.com>
Tue, 8 Nov 2005 10:16:56 +0000 (10:16 +0000)
p4raw-link: @26041 on //depot/perl: 8c56068e9474ff1eb28abd58496550d54581dd25

p4raw-id: //depot/perl@26044

win32/win32.c

index 880a59b..56b5da1 100644 (file)
@@ -1395,7 +1395,7 @@ win32_putenv(const char *name)
     dTHX;
     char* curitem;
     char* val;
-    int length, relval = -1;
+    int relval = -1;
 
     if (name) {
         Newx(curitem,strlen(name)+1,char);