From c934c7be49dce67dcc580b4dfbded53d9d41e8c9 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 13 Apr 2020 20:43:09 -0400 Subject: [PATCH] colons in output --- src/lib/notcurses.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index 339e9d036..294fee830 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -1018,7 +1018,7 @@ int notcurses_stop(notcurses* nc){ NANOSECS_IN_SEC * (double)nc->stashstats.renders / nc->stashstats.render_ns : 0.0, nc->stashstats.failed_renders, nc->stashstats.failed_renders == 1 ? "" : "s"); - fprintf(stderr, "RGB emits/elides: def %lu:%lu fg %lu:%lu bg %lu:%lu\n", + fprintf(stderr, "RGB emits:elides: def %lu:%lu fg %lu:%lu bg %lu:%lu\n", nc->stashstats.defaultemissions, nc->stashstats.defaultelisions, nc->stashstats.fgemissions, @@ -1032,7 +1032,7 @@ int notcurses_stop(notcurses* nc){ (nc->stashstats.fgelisions * 100.0) / (nc->stashstats.fgemissions + nc->stashstats.fgelisions), (nc->stashstats.bgemissions + nc->stashstats.bgelisions) == 0 ? 0 : (nc->stashstats.bgelisions * 100.0) / (nc->stashstats.bgemissions + nc->stashstats.bgelisions)); - fprintf(stderr, "Cell emits/elides: %ju/%ju (%.2f%%)\n", + fprintf(stderr, "Cell emits:elides: %ju/%ju (%.2f%%)\n", nc->stashstats.cellemissions, nc->stashstats.cellelisions, (nc->stashstats.cellemissions + nc->stashstats.cellelisions) == 0 ? 0 : (nc->stashstats.cellelisions * 100.0) / (nc->stashstats.cellemissions + nc->stashstats.cellelisions));