From 1d51e3a3a38dc50e9655b62356026b78cb317fb5 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 9 Jul 2018 21:32:33 +1000 Subject: src/lundump.js: Fix mixed indentation --- src/lundump.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lundump.js b/src/lundump.js index d288d9c..807d8be 100644 --- a/src/lundump.js +++ b/src/lundump.js @@ -126,8 +126,8 @@ class BytecodeParser { let p = BytecodeParser; for (let i = 0; i < n; i++) { - if (luaZ_read(this.Z, this.u8, 0, this.instructionSize) !== 0) - this.error("truncated"); + if (luaZ_read(this.Z, this.u8, 0, this.instructionSize) !== 0) + this.error("truncated"); let ins = this.dv.getUint32(0, true); f.code[i] = { code: ins, -- cgit v1.2.3-54-g00ecf