diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-08-17 11:24:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:07 -0500 |
commit | d90a0d3ba1ac18caee08ab3f621b742229a41e45 (patch) | |
tree | 6007fb6fd7165284a73ad14ee6418d3384138c95 /source/pidl | |
parent | b7d6ac5215c27f7eb4ae16e3a68b7f7fc32dcb72 (diff) | |
download | samba-d90a0d3ba1ac18caee08ab3f621b742229a41e45.tar.gz |
r24515: use fatal() wrapper instead of die() directly
metze
Diffstat (limited to 'source/pidl')
-rw-r--r-- | source/pidl/lib/Parse/Pidl/Samba4/Header.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/pidl/lib/Parse/Pidl/Samba4/Header.pm b/source/pidl/lib/Parse/Pidl/Samba4/Header.pm index bcf36935733..52263e848ac 100644 --- a/source/pidl/lib/Parse/Pidl/Samba4/Header.pm +++ b/source/pidl/lib/Parse/Pidl/Samba4/Header.pm @@ -7,6 +7,7 @@ package Parse::Pidl::Samba4::Header; use strict; +use Parse::Pidl qw(fatal); use Parse::Pidl::Typelist qw(mapTypeName scalar_is_reference); use Parse::Pidl::Util qw(has_property is_constant); use Parse::Pidl::Samba4 qw(is_intree); @@ -149,13 +150,13 @@ sub HeaderEnum($$) $name = $1; $value = $2; $with_val = 1; - die ("you can't mix enum member with values and without values!") + fatal($e->{ORIGINAL}, "you can't mix enum member with values and without values!") unless ($without_val == 0); } else { $name = $t; $value = $count++; $without_val = 1; - die ("you can't mix enum member with values and without values!") + fatal($e->{ORIGINAL}, "you can't mix enum member with values and without values!") unless ($with_val == 0); } pidl "#define $name ( $value )\n"; |