summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua')
-rwxr-xr-xMaster/texmf-dist/scripts/make4ht/make4ht-dvireader.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua b/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
index f5988ee96c4..6355650ef43 100755
--- a/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
+++ b/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
@@ -103,7 +103,7 @@ local function read_opcode(opcode, str, pos)
if not format then return nil, "Cannot find opcode format: " .. opcode end
-- check that opcode byte in the current position is the same as required opcode
local op = read_byte(str, pos)
- if op ~= format.opcode then return nil, "Wrong opcode " .. op " at position " .. pos end
+ if op ~= format.opcode then return nil, "Wrong opcode " .. op .. " at position " .. pos end
return read_arguments(str, pos+1, format.args)
end