aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-07-23 10:17:14 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-07-23 10:17:14 +0300
commit93881c26428a4d07ee348c34b59f3b9586853535 (patch)
tree2c94687fe244a9ec97935262d842fc0ed1d0eea4 /debug.c
parentf056f0a42953c9297f60335421ccd7609cba698e (diff)
downloadegawk-93881c26428a4d07ee348c34b59f3b9586853535.tar.gz
egawk-93881c26428a4d07ee348c34b59f3b9586853535.tar.bz2
egawk-93881c26428a4d07ee348c34b59f3b9586853535.zip
Fixes for Vax/VMS C.
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index 39ff7723..cf0946e2 100644
--- a/debug.c
+++ b/debug.c
@@ -4085,7 +4085,7 @@ print_instruction(INSTRUCTION *pc, Func_print print_func, FILE *fp, int in_dump)
break;
case Op_exec_count:
- print_func(fp, "[exec_count = %llu]\n", pc->exec_count);
+ print_func(fp, "[exec_count = " EXEC_COUNT_FMT "]\n", pc->exec_count);
break;
case Op_store_var: