1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +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
commit f1612218a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -564,9 +564,9 @@ int main (void)
/* Output the result */
if (Failures) {
printf ("%u tests, %u failures\n", Tests, Failures);
printf ("sprintf-test: %u tests, %u failures\n", Tests, Failures);
} 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 */