From 9e8fc96cdcd909a9ead698696e4fae76bd43b27f Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Wed, 20 Feb 2019 08:07:19 -0800 Subject: [PATCH] Fix testsuite 2019-02-19 Caroline Tice Fix testsuite * testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature. From-SVN: r269041 --- libvtv/ChangeLog | 5 +++++ libvtv/testsuite/libvtv.cc/const_vtable.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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; -- 2.30.2