From 84a064969bb44ed826af020d061bad37958a6390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwenol=C3=A9=20Beauchesne?= Date: Fri, 10 Feb 2006 14:10:41 +0000 Subject: fix varargs --- perl-install/Newt/Newt.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/Newt/Newt.xs b/perl-install/Newt/Newt.xs index e4ad81d62..9c507a7e1 100644 --- a/perl-install/Newt/Newt.xs +++ b/perl-install/Newt/Newt.xs @@ -401,7 +401,7 @@ HCloseStacked3(c1, c2, c3) Newt::Component c3; CODE: { - RETVAL = newtGridHCloseStacked(NEWT_GRID_COMPONENT, c1, NEWT_GRID_COMPONENT, c2, NEWT_GRID_COMPONENT, c3); + RETVAL = newtGridHCloseStacked(NEWT_GRID_COMPONENT, c1, NEWT_GRID_COMPONENT, c2, NEWT_GRID_COMPONENT, c3, NEWT_GRID_EMPTY, NULL); } OUTPUT: RETVAL -- cgit v1.2.1