From 1e3db6d6e23ea967f9dbd3dfa31651929390d181 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Sat, 18 Nov 2000 08:36:32 +0100
Subject: [PATCH] Fixed duplicate variable declaration

Rev: bin/precompile.pike:1.16
---
 bin/precompile.pike | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/precompile.pike b/bin/precompile.pike
index 8db695f74d..e1db4fa449 100644
--- a/bin/precompile.pike
+++ b/bin/precompile.pike
@@ -304,7 +304,7 @@ array convert(array x, string base)
   array declarations=({});
   array ret=x;
 
-  array x=ret/({"PIKECLASS"});
+  x=ret/({"PIKECLASS"});
   ret=x[0];
 
   for(int f=1;f<sizeof(x);f++)
-- 
GitLab