Skip to content

Commit 80c399f

Browse files
committed
decompressor: Fix off-by-one truncating last character of error message
1 parent 4b057bc commit 80c399f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decompressor/decompressor.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,6 @@ _start:
134134
section .rodata progbits alloc noexec nowrite align=1
135135

136136
errmsg: db "limine integrity error"
137-
.len: equ $ - errmsg - 1
137+
.len: equ $ - errmsg
138138

139139
section .note.GNU-stack noalloc noexec nowrite progbits

0 commit comments

Comments
 (0)