diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-18 05:50:06 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-18 05:50:06 -0500 |
commit | 0b59672d55379f824dd592b7a5c854d9a21a2c12 (patch) | |
tree | b9f721060e858893975bba3c216076175535140a /uxd.c | |
parent | c205a7ea2a7171b61dae4ac51a3a251cceb1dde1 (diff) | |
download | uxd-0b59672d55379f824dd592b7a5c854d9a21a2c12.tar.gz |
blank before -i output, clarify "characters" means valid ones.
Diffstat (limited to 'uxd.c')
-rw-r--r-- | uxd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -772,8 +772,8 @@ void seek_input(void) { } void print_info(void) { - printf("Bytes: %ld\n", byte_count); - printf("Characters: %ld\n", char_count); + printf("\nBytes: %ld\n", byte_count); + printf("Valid characters: %ld\n", char_count); printf(" ASCII: %ld\n", ascii_count); printf(" Multibyte: %ld\n", multi_count); printf("Bad sequences: %ld\n", bad_count); |