diff options
author | Anton L. Šijanec <sijanecantonluka@gmail.com> | 2020-05-16 21:23:54 +0200 |
---|---|---|
committer | Anton L. Šijanec <sijanecantonluka@gmail.com> | 2020-05-16 21:23:54 +0200 |
commit | a328bc00bfa3e3574cc995c9fd80717f74c9cb4e (patch) | |
tree | 565c5a60b704461b174670dadd51d392420e5e38 /src/tape.c | |
parent | version bump to 0.3.0 (diff) | |
download | bverbose-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |