Implicit int in none/tests/faultstatus.c

There is a definition in faultstatus.c that is not accepted by
C99 compilers (implicit ints were removed in that language revision).

https://bugs.kde.org/show_bug.cgi?id=462007
This commit is contained in:
Mark Wielaard 2022-11-18 20:12:06 +01:00
parent 5ab1e53f07
commit 0811a612dd
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -80,6 +80,7 @@ n-i-bz Implement vgdb invoker on FreeBSD
458915 Remove register cache to fix 458915 gdbserver causes wrong syscall return
459031 Documentation on --error-exitcode incomplete
459477 XERROR messages lacks ending '\n' in vgdb
462007 Implicit int in none/tests/faultstatus.c
To see details of a given bug, visit
https://bugs.kde.org/show_bug.cgi?id=XXXXXX

View File

@ -190,7 +190,7 @@ int main()
return 0;
}
static volatile s_zero;
static volatile int s_zero;
static int zero()
{