Skip to content

Commit 7befcc8

Browse files
committed
fix orphan format specifier in uxn error
1 parent e1fb145 commit 7befcc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/backends/uxn.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ class BackendUXN : CompilerBackend {
654654

655655
override void CompileFuncAddr(FuncAddrNode node) {
656656
if (node.func !in words) {
657-
Error(node.error, "Function '%s' doesn't exist");
657+
Error(node.error, "Function '%s' doesn't exist", node.func);
658658
}
659659

660660
auto word = words[node.func];

0 commit comments

Comments
 (0)