From: Caroline Tice Date: Wed, 20 Feb 2019 16:07:19 +0000 (-0800) Subject: Fix testsuite X-Git-Tag: basepoints/gcc-10~1055 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e8fc96cdcd909a9ead698696e4fae76bd43b27f;p=thirdparty%2Fgcc.git Fix testsuite 2019-02-19 Caroline Tice Fix testsuite * testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature. From-SVN: r269041 --- diff --git a/libvtv/ChangeLog b/libvtv/ChangeLog index 60409dafdb0d..96e661893008 100644 --- a/libvtv/ChangeLog +++ b/libvtv/ChangeLog @@ -1,3 +1,8 @@ +2019-02-19 Caroline Tice + + Fix testsuite + * testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature. + 2019-01-01 Jakub Jelinek Update copyright years. diff --git a/libvtv/testsuite/libvtv.cc/const_vtable.cc b/libvtv/testsuite/libvtv.cc/const_vtable.cc index 3229f0083082..d26fcbcf13ef 100644 --- a/libvtv/testsuite/libvtv.cc/const_vtable.cc +++ b/libvtv/testsuite/libvtv.cc/const_vtable.cc @@ -28,7 +28,7 @@ struct D : B, C { ~D(); }; extern "C" int printf(const char *,...); -main() +int main(int argc, char**argv) { try { D *d = new D;