1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-13 08:25:28 +00:00

Merge pull request #1874 from clbr/sprintf-clarify

Clarify sprintf-test's output so it doesn't look like the entire test…
This commit is contained in:
Bob Andrews
2022-10-12 17:54:30 +02:00
committed by GitHub

View File

@@ -564,9 +564,9 @@ int main (void)
/* Output the result */ /* Output the result */
if (Failures) { if (Failures) {
printf ("%u tests, %u failures\n", Tests, Failures); printf ("sprintf-test: %u tests, %u failures\n", Tests, Failures);
} else { } else {
printf ("%u tests: Ok\n", Tests); printf ("sprintf-test: %u tests: Ok\n", Tests);
} }
/* Wait for a key so we can read the result */ /* Wait for a key so we can read the result */