summaryrefslogtreecommitdiffstats
path: root/src/tape.c
diff options
context:
space:
mode:
authorAnton L. Šijanec <sijanecantonluka@gmail.com>2020-05-16 21:23:54 +0200
committerAnton L. Šijanec <sijanecantonluka@gmail.com>2020-05-16 21:23:54 +0200
commita328bc00bfa3e3574cc995c9fd80717f74c9cb4e (patch)
tree565c5a60b704461b174670dadd51d392420e5e38 /src/tape.c
parentversion bump to 0.3.0 (diff)
downloadbverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar.gz
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar.bz2
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar.lz
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar.xz
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.tar.zst
bverbose-a328bc00bfa3e3574cc995c9fd80717f74c9cb4e.zip
Diffstat (limited to 'src/tape.c')
-rw-r--r--src/tape.c2
1 files changed, 1 insertions, 1 deletions
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) {