diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-12-08 07:41:29 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-12-08 07:41:29 +0500 |
commit | b7eba6a2cda0d98e052a29f7e4b4735dc094aaef (patch) | |
tree | ad4f440996556e14876062e67899bed6984981d2 /tools | |
parent | e99904914bbd0b70bdbd552aebdf6b94e1779237 (diff) | |
download | prosody-b7eba6a2cda0d98e052a29f7e4b4735dc094aaef.tar.gz prosody-b7eba6a2cda0d98e052a29f7e4b4735dc094aaef.zip |
Fixed a variable redeclaration
Diffstat (limited to 'tools')
-rw-r--r-- | tools/erlparse.lua | 2 |
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
|