aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2008-12-08 07:41:29 +0500
committerWaqas Hussain <waqas20@gmail.com>2008-12-08 07:41:29 +0500
commitb7eba6a2cda0d98e052a29f7e4b4735dc094aaef (patch)
treead4f440996556e14876062e67899bed6984981d2 /tools
parente99904914bbd0b70bdbd552aebdf6b94e1779237 (diff)
downloadprosody-b7eba6a2cda0d98e052a29f7e4b4735dc094aaef.tar.gz
prosody-b7eba6a2cda0d98e052a29f7e4b4735dc094aaef.zip
Fixed a variable redeclaration
Diffstat (limited to 'tools')
-rw-r--r--tools/erlparse.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/erlparse.lua b/tools/erlparse.lua
index b593b48d..af1628e5 100644
--- a/tools/erlparse.lua
+++ b/tools/erlparse.lua
@@ -72,7 +72,7 @@ local function readSpecialString()
read("<"); read("<"); -- read <<
local str = "";
if peek() == "\"" then
- local str = readString();
+ str = readString();
elseif peek() ~= ">" then
error();
end