summaryrefslogtreecommitdiffstats
path: root/src/tape.c
diff options
context:
space:
mode:
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) {