From 68812e373cf46619a0ed7134d8576afd6d339682 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sun, 10 Feb 2008 04:58:03 +0000 Subject: [PATCH] re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors)) PR objc++/34193 * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main(). From-SVN: r132211 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aedc9a3a9da8..7aba2a3eb15d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-02-09 Kaveh R. Ghazi + + PR objc++/34193 + * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main(). + 2008-02-06 Alexandre Oliva PR c++/35056 diff --git a/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm b/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm index 2ead28835378..e6a1d181d903 100644 --- a/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm +++ b/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm @@ -22,7 +22,7 @@ -(unsigned int) length { return len; } @end -int main(int argc, void **args) +int main(int argc, const char **args) { if (strcmp ([@"this is a string" cString], "this is a string")) abort (); -- 2.47.2