r10296: Fix function pointer handling for older perl versions
authorJelmer Vernooij <jelmer@samba.org>
Sat, 17 Sep 2005 14:36:35 +0000 (14:36 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:38:14 +0000 (13:38 -0500)
(This used to be commit 0949db8119af548c199930c64449d6ca2228bcb5)

source4/pidl/lib/Parse/Pidl/Samba/TDR.pm

index b5637f8cbfac7d788b2eaa0bea1514ed14c48cee..124cb61bb4decc2ef4479fef11d171267f44e379 100644 (file)
@@ -200,7 +200,7 @@ sub ParserTypedef($$)
 
        { STRUCT => \&ParserStruct, UNION => \&ParserUnion, 
                ENUM => \&ParserEnum, BITMAP => \&ParserBitmap
-       }->{$e->{DATA}->{TYPE}}($e->{DATA}, $e->{NAME}, $t, has_property($e, "public"));
+       }->{$e->{DATA}->{TYPE}}->($e->{DATA}, $e->{NAME}, $t, has_property($e, "public"));
 
        pidl "";
 }