mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-20 03:25:47 +00:00
colons in output
This commit is contained in:
parent
bd08712a0e
commit
c934c7be49
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user