diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-05-31 18:04:11 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-05-31 18:04:11 -0700 |
commit | a488d2e3d4ffd9148083c30c318a4f127bca65f0 (patch) | |
tree | 609a9d7929d3413118ad6ae2195be151fe6d6877 | |
parent | d940980bde994778887d64e4c2b28dfcc95e75dc (diff) | |
download | txr-a488d2e3d4ffd9148083c30c318a4f127bca65f0.tar.gz txr-a488d2e3d4ffd9148083c30c318a4f127bca65f0.tar.bz2 txr-a488d2e3d4ffd9148083c30c318a4f127bca65f0.zip |
vm: bugfix: bungled no-block-visible diagnosis.
* vm.c (vm_no_block_err): Fix passing extra name argument to
format that is not used in the format string.
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -810,7 +810,7 @@ NOINLINE static void vm_no_block_err(struct vm *vm, val name) else eval_error(vm->vd->bytecode, lit("return: no anonymous block is visible"), - name, nao); + nao); } NOINLINE static void vm_retsr(struct vm *vm, vm_word_t insn) |