From a328bc00bfa3e3574cc995c9fd80717f74c9cb4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20L=2E=20=C5=A0ijanec?= Date: Sat, 16 May 2020 21:23:54 +0200 Subject: critical OOM bug fix --- src/tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tape.c') diff --git a/src/tape.c b/src/tape.c index e405001..eba1478 100644 --- a/src/tape.c +++ b/src/tape.c @@ -37,7 +37,7 @@ int bvr_command_processor(FILE * page_source_file, FILE * temp_output_file) { command_handler_output = bvr_handle_info(page_source_file, temp_output_file); break; default: - fprintf(stderr, "[tape.c] bvr_command_processor: unknown command %c\n", command_entered); + fprintf(stderr, "[tape.c] bvr_command_processor: unknown command %c (dec: %d)\n", command_entered, command_entered); fprintf(temp_output_file, "\nbVerbose unknown command %c\n", command_entered); } if(command_handler_output != SUCCESS) { -- cgit v1.2.3