PR objc++/34193
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Feb 2008 04:58:03 +0000 (04:58 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Feb 2008 04:58:03 +0000 (04:58 +0000)
* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132211 138bc75d-0d04-0410-961f-82ee72b054a4

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

index aedc9a3..7aba2a3 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       PR objc++/34193
+       * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().
+
 2008-02-06  Alexandre Oliva  <aoliva@redhat.com>
 
        PR c++/35056
index 2ead288..e6a1d18 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 ();