From d4886d20dbea9f49381fad01c3e68280d1f666c1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 28 Mar 2005 18:22:45 +0000 Subject: r6098: fix parsing of empty union cases metze (This used to be commit f3c64120a16289472bdc56329d39c7221d00b558) --- source4/build/pidl/idl.pm | 2 +- source4/build/pidl/idl.yp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/build/pidl/idl.pm b/source4/build/pidl/idl.pm index 9eea6679cc..636bcfb51c 100644 --- a/source4/build/pidl/idl.pm +++ b/source4/build/pidl/idl.pm @@ -2038,7 +2038,7 @@ sub {{ "NAME" => "", "TYPE" => "EMPTY", - "PROPERTIES" => $_[0], + "PROPERTIES" => $_[1], "POINTERS" => 0 }} ], diff --git a/source4/build/pidl/idl.yp b/source4/build/pidl/idl.yp index 3f670c7b2f..775e1fbd38 100644 --- a/source4/build/pidl/idl.yp +++ b/source4/build/pidl/idl.yp @@ -167,7 +167,7 @@ empty_element: property_list ';' {{ "NAME" => "", "TYPE" => "EMPTY", - "PROPERTIES" => $_[0], + "PROPERTIES" => $_[1], "POINTERS" => 0 }} ; -- cgit