simio/tracer: fix output format

This commit adds ":" after "SMCLK".

Previous output:
    MCLK:              ...
    SMCLK              ...
    ACLK:              ...

Current output:
    MCLK:              ...
    SMCLK:             ...
    ACLK:              ...
This commit is contained in:
Hose wie Jacke 2021-05-11 07:49:42 +02:00 committed by Daniel Beer
parent 66dd71e62d
commit 4c4d94e43b
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ static int tracer_info(struct simio_device *dev)
printc("Instruction count: %" LLFMT "\n", tr->inscount);
printc("MCLK: %" LLFMT "\n", tr->cycles[SIMIO_MCLK]);
printc("SMCLK %" LLFMT "\n", tr->cycles[SIMIO_SMCLK]);
printc("SMCLK: %" LLFMT "\n", tr->cycles[SIMIO_SMCLK]);
printc("ACLK: %" LLFMT "\n", tr->cycles[SIMIO_ACLK]);
if (tr->irq_request >= 0)