aboutsummaryrefslogtreecommitdiff
path: root/uxd.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-12-18 05:50:06 -0500
committerB. Watson <urchlay@slackware.uk>2024-12-18 05:50:06 -0500
commit0b59672d55379f824dd592b7a5c854d9a21a2c12 (patch)
treeb9f721060e858893975bba3c216076175535140a /uxd.c
parentc205a7ea2a7171b61dae4ac51a3a251cceb1dde1 (diff)
downloaduxd-0b59672d55379f824dd592b7a5c854d9a21a2c12.tar.gz
blank before -i output, clarify "characters" means valid ones.
Diffstat (limited to 'uxd.c')
-rw-r--r--uxd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uxd.c b/uxd.c
index d141c2e..f9ca29a 100644
--- a/uxd.c
+++ b/uxd.c
@@ -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);