https://bugs.kde.org/show_bug.cgi?id=462007
Bug ID: 462007 Summary: Implicit int in none/tests/faultstatus.c Classification: Developer tools Product: valgrind Version: unspecified Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: general Assignee: jsew...@acm.org Reporter: fwei...@redhat.com Target Milestone: --- There is a definition in a test that is not accepted by C99 compilers (implicit ints were removed in that language revision). This should fix it: diff --git a/none/tests/faultstatus.c b/none/tests/faultstatus.c index 458ea8264..92a8350ab 100644 --- a/none/tests/faultstatus.c +++ b/none/tests/faultstatus.c @@ -190,7 +190,7 @@ int main() return 0; } -static volatile s_zero; +static volatile int s_zero; static int zero() { -- You are receiving this mail because: You are watching all bug changes.