Fixed trailing spaces in some testcases.

This commit is contained in:
acqn 2022-09-29 18:23:32 +08:00
parent 846d51db72
commit 376afd0edb
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
/* Bug 1838 - function parameters declared as function types rather than function pointers */
#include <stdio.h>
static int failures = 0;
typedef int fn_t(int);
int main(void)
{
void foo(fn_t*);

View File

@ -41,6 +41,6 @@ int main(void) {
if (failures > 0) {
printf("Failures: %u\n", failures);
}
return failures;
}