]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors))
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Tue, 12 Feb 2008 21:44:15 +0000 (21:44 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Tue, 12 Feb 2008 21:44:15 +0000 (21:44 +0000)
PR objc++/34193
* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().

From-SVN: r132273

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm

index 6dc0c369d0b9ce43a9b82c8d1b7254da6950c460..f2a2069372f32f9dd98deb7c1d4abd402ee97a08 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       PR objc++/34193
+       * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().
+
 2008-02-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        PR objc++/27232
index 2ead288353785d48102d59a7d94d06afd55a0f98..e6a1d181d903d3b0f777426a68b9a27d4c832f0a 100644 (file)
@@ -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 ();