From: Caroline Tice Date: Wed, 20 Feb 2019 16:07:19 +0000 (-0800) Subject: Fix testsuite X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e8fc96cdcd909a9ead698696e4fae76bd43b27f;p=gcc.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 60409dafdb0..96e66189300 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 3229f008308..d26fcbcf13e 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;