Skip to content

Commit

Permalink
fix orphan format specifier in uxn error
Browse files Browse the repository at this point in the history
  • Loading branch information
MESYETI committed Jun 7, 2024
1 parent e1fb145 commit 7befcc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backends/uxn.d
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ class BackendUXN : CompilerBackend {

override void CompileFuncAddr(FuncAddrNode node) {
if (node.func !in words) {
Error(node.error, "Function '%s' doesn't exist");
Error(node.error, "Function '%s' doesn't exist", node.func);
}

auto word = words[node.func];
Expand Down

0 comments on commit 7befcc8

Please sign in to comment.