Skip to content

Commit 663b061

Browse files
committed
Simplify li macro
1 parent 0520dce commit 663b061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/asserts.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ MACRO list_start
4444
ENDM
4545

4646
MACRO li
47-
ASSERT STRFIND(\1, "@") == -1, STRCAT("String terminator \"@\" in list entry: ", \1)
47+
ASSERT STRFIND(\1, "@") == -1, "String terminator \"@\" in list entry: \1"
4848
db \1, "@"
4949
DEF list_index += 1
5050
ENDM

0 commit comments

Comments
 (0)