From 9e8fc96cdcd909a9ead698696e4fae76bd43b27f Mon Sep 17 00:00:00 2001
From: Caroline Tice <cmtice@google.com>
Date: Wed, 20 Feb 2019 08:07:19 -0800
Subject: [PATCH] Fix testsuite

2019-02-19  Caroline Tice <cmtice@google.com>

	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 60409dafdb0d..96e661893008 100644
--- a/libvtv/ChangeLog
+++ b/libvtv/ChangeLog
@@ -1,3 +1,8 @@
+2019-02-19  Caroline Tice <cmtice@google.com>
+
+	Fix testsuite
+	* testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature.
+
 2019-01-01  Jakub Jelinek  <jakub@redhat.com>
 
 	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; 
-- 
GitLab