diff options
author | Tim Potter <tpot@samba.org> | 2005-01-26 06:29:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:13 -0500 |
commit | 27cb4d4672268d3c1b57494e892dbac3d38d5b54 (patch) | |
tree | 516921866811d05502ec64799318f9b5d0b9a82f /source4/build/pidl/eparser.pm | |
parent | 6026daeec963c7e0d2fbe3f46acd543fb0e961a2 (diff) | |
download | samba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.tar.gz samba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.tar.bz2 samba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.zip |
r5008: 32-bits is the default bitmap size.
(This used to be commit 493ba2da6bb93d080ff92c50d920df8c858f3010)
Diffstat (limited to 'source4/build/pidl/eparser.pm')
-rw-r--r-- | source4/build/pidl/eparser.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm index 25b09febb8..8075e42cb9 100644 --- a/source4/build/pidl/eparser.pm +++ b/source4/build/pidl/eparser.pm @@ -215,11 +215,10 @@ sub bitmapbase($) { my $e = shift; - return "32", if util::has_property($e->{DATA}, "bitmap32bit"); return "16", if util::has_property($e->{DATA}, "bitmap16bit"); return "8", if util::has_property($e->{DATA}, "bitmap8bit"); - die("can't calculate bitmap size for $e->{NAME}"); + return "32"; } sub NeededTypedef($) |