aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
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